#ifndef __FP_CLASS_LOADED #define __FP_CLASS_LOADED 1 #ifdef __ALPHA /* Alpha only */ /**************************************************************************** ** ** - IEEE Std 754-1985 classification function return values ** ***************************************************************************** ** Header is nonstandard ***************************************************************************** ** ** Copyright Digital Equipment Corporation 1993, 1997. All rights reserved. ** ** Restricted Rights: Use, duplication, or disclosure by the U.S. ** Government is subject to restrictions as set forth in subparagraph ** (c) (1) (ii) of DFARS 252.227-7013, or in FAR 52.227-19, or in FAR ** 52.227-14 Alt. III, as applicable. ** ** This software is proprietary to and embodies the confidential ** technology of Digital Equipment Corporation. Possession, use, or ** copying of this software and media is authorized only pursuant to a ** valid written license from Digital or an authorized sublicensor. ** ****************************************************************************** */ /* ** 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 /* __ALPHA only */ #endif /* __FP_CLASS_LOADED */