Message-ID: <005c01be81e1$cb6b8ac0$85023bd4@default> From: "Laurynas Biveinis" To: Subject: C9X header Date: Thu, 8 Apr 1999 18:46:16 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-4" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3612.1700 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3612.1700 Reply-To: djgpp-workers AT delorie DOT com It defines type bool, macros true, false, __bool_true_false_are_defined. Laurynas Biveinis ---------------------------------------------------------------------------- -------- /* Copyright (C) 1999 Laurynas Biveinis, see COPYING.DJ for details */ #ifndef __dj_include_stdbool_h_ #define __dj_include_stdbool_h_ #ifdef __cplusplus extern "C" { #endif #ifndef __dj_ENFORCE_ANSI_FREESTANDING typedef int bool; #define true 1 #define false 0 #define __bool_true_false_are_defined 1 #ifndef __STRICT_ANSI__ #ifndef _POSIX_SOURCE #endif /* !_POSIX_SOURCE */ #endif /* !__STRICT_ANSI__ */ #endif /* !__dj_ENFORCE_ANSI_FREESTANDING */ #ifndef __dj_ENFORCE_FUNCTION_CALLS #endif /* !__dj_ENFORCE_FUNCTION_CALLS */ #ifdef __cplusplus } #endif #endif /* !__dj_include_stdbool_h_ */