#ifndef __FP_CLASS_LOADED #define __FP_CLASS_LOADED 1 #if !defined __VAX /**************************************************************************** ** ** - IEEE Std 754-1985 classification function return values ** ***************************************************************************** ** Header is nonstandard ***************************************************************************** ** ** Copyright 2003 Hewlett-Packard Development Company, L.P. ** ** Confidential computer software. Valid license from HP and/or ** its subsidiaries required for possession, use, or copying. ** ** Consistent with FAR 12.211 and 12.212, Commercial Computer Software, ** Computer Software Documentation, and Technical Data for Commercial ** Items are licensed to the U.S. Government under vendor's standard ** commercial license. ** ** Neither HP nor any of its subsidiaries shall be liable for technical ** or editorial errors or omissions contained herein. The information ** in this document is provided "as is" without warranty of any kind and ** is subject to change without notice. The warranties for HP products ** are set forth in the express limited warranty statements accompanying ** such products. Nothing herein should be construed as constituting an ** additional warranty. ** ***************************************************************************** */ /* ** This file uses non-ANSI-Standard features */ #pragma __nostandard /* ** Define the FP_ constants */ #define FP_SNAN 0 #define FP_QNAN 1 #define FP_POS_INF 2 #define FP_NEG_INF 3 #define FP_POS_NORM 4 #define FP_NEG_NORM 5 #define FP_POS_DENORM 6 #define FP_NEG_DENORM 7 #define FP_POS_ZERO 8 #define FP_NEG_ZERO 9 #pragma __standard #endif /* !__VAX */ #endif /* __FP_CLASS_LOADED */