#ifndef __FP_CLASS_LOADED #define __FP_CLASS_LOADED 1 /**************************************************************************** ** ** - IEEE Std 754-1985 classification function return values ** ***************************************************************************** ** Header is nonstandard ***************************************************************************** */ /* ************************************************************************* */ /* * * */ /* * HPE CONFIDENTIAL. This software is confidential proprietary software * */ /* * licensed by Hewlett Packard Enterprise Development, LP, and is not * */ /* * authorized to be used, duplicated or disclosed to anyone without the * */ /* * prior written permission of HPE. * */ /* * Copyright 2017 Hewlett Packard Enterprise Development, LP * */ /* * * */ /* * VMS SOFTWARE, INC. CONFIDENTIAL. This software is confidential * */ /* * proprietary software licensed by VMS Software, Inc., and is not * */ /* * authorized to be used, duplicated or disclosed to anyone without * */ /* * the prior written permission of VMS Software, Inc. * */ /* * Copyright 2017 VMS Software, Inc. * */ /* * * */ /* ************************************************************************* */ /* ** 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 /* __FP_CLASS_LOADED */