#ifndef __STDBOOL_LOADED #define __STDBOOL_LOADED 1 /**************************************************************************** ** ** - C99 boolean data type ** ***************************************************************************** ** Header introduced by the C99 Standard ***************************************************************************** ** Copyright 2000 Compaq Computer Corporation ** ** Compaq and the Compaq logo Registered in U.S. Patent and Trademark Office. ** ** Confidential computer software. Valid license from Compaq 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. ** ***************************************************************************** */ #pragma __nostandard #include #if ! (defined(__DECC) && __DECC_VER >= 60400000) # 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 */