summaryrefslogtreecommitdiff
path: root/missing/stdbool.h
diff options
context:
space:
mode:
Diffstat (limited to 'missing/stdbool.h')
-rw-r--r--missing/stdbool.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/missing/stdbool.h b/missing/stdbool.h
deleted file mode 100644
index f370e01e92..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 __bool_true_false_are_defined
-# ifndef __cplusplus
-# undef bool
-# undef false
-# undef true
-# define bool signed char
-# define false 0
-# define true 1
-# define __bool_true_false_are_defined 1
-# endif
-#endif
-
-#endif /* _MISSING_STDBOOL_H_ */