diff options
Diffstat (limited to 'missing/stdbool.h')
| -rw-r--r-- | missing/stdbool.h | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/missing/stdbool.h b/missing/stdbool.h deleted file mode 100644 index 68c2f3d254..0000000000 --- a/missing/stdbool.h +++ /dev/null @@ -1,20 +0,0 @@ -/* - * missing/stdbool.h: Quick alternative of C99 stdbool.h - */ - -#ifndef _MISSING_STDBOOL_H_ -#define _MISSING_STDBOOL_H_ - -#ifndef __cplusplus - -#define bool _Bool -#define true 1 -#define false 0 - -#ifndef HAVE__BOOL /* AC_HEADER_STDBOOL in configure.ac */ -typedef int _Bool; -#endif /* HAVE__BOOL */ - -#endif /* __cplusplus */ - -#endif /* _MISSING_STDBOOL_H_ */ |
