#ifndef __STDBOOL_LOADED #define __STDBOOL_LOADED 1 /**************************************************************************** ** ** - C99 boolean data type ** ***************************************************************************** ** Header introduced by the C99 Standard ***************************************************************************** ** * ** 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 2003 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 2022 VMS Software, Inc. * ** * ****************************************************************************/ #pragma __nostandard #include #if !(defined(__DECC) && __DECC_VER >= 60400000) && !defined(__clang__) # error "C99 header is not supported by this compiler." #else # define bool _Bool # define true 1 # define false 0 # define __bool_true_false_are_defined 1 #endif /* defined(__DECC) && __DECC_VER >= 60400000 */ #pragma __standard #endif /* __STDBOOL_LOADED */