X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=includes%2Fstdbool.h;h=6e9c83f07acaad0fdfea42e394c49abbb30e1297;hp=0e1c2a5ebbe95bd0b14c09242a757ab938d60e1f;hb=1d9d92ba957a0b8307c9a65c35867fde68e6533b;hpb=8c8750c2826684c2420571a8007b9606f72c9040 diff --git a/includes/stdbool.h b/includes/stdbool.h index 0e1c2a5..6e9c83f 100644 --- a/includes/stdbool.h +++ b/includes/stdbool.h @@ -1,17 +1,20 @@ -// ---------------------------------------------------------------------------- -// $Id$ -// ---------------------------------------------------------------------------- -// Public Domain C Library - http://pdclib.sourceforge.net -// This code is Public Domain. Use, modify, and redistribute at will. -// ---------------------------------------------------------------------------- -// Boolean type and values -// ---------------------------------------------------------------------------- - -#ifndef __STDBOOL_H -#define __STDBOOL_H __STDBOOL_H - -// ---------------------------------------------------------------------------- -// MACROS +/* ---------------------------------------------------------------------------- + * $Id$ + * ---------------------------------------------------------------------------- + * Public Domain C Library - http://pdclib.sourceforge.net + * This code is Public Domain. Use, modify, and redistribute at will. + * ---------------------------------------------------------------------------- + * Boolean type and values + * ---------------------------------------------------------------------------- + * This header is part of a freestanding implementation + * --------------------------------------------------------------------------*/ + +#ifndef _STDBOOL_H +#define _STDBOOL_H _STDBOOL_H + +/* ---------------------------------------------------------------------------- + * MACROS + * --------------------------------------------------------------------------*/ #define __bool_true_false_are_defined 1 @@ -21,11 +24,12 @@ #define false 0 #define true 1 -// ---------------------------------------------------------------------------- -// TYPEDEFS +/* ---------------------------------------------------------------------------- + * TYPEDEFS + * --------------------------------------------------------------------------*/ typedef int bool; -#endif // __cplusplus +#endif /* __cplusplus */ -#endif // __STDBOOL_H +#endif /* _STDBOOL_H */