aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bool.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bool.h')
-rw-r--r--lib/bool.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/lib/bool.h b/lib/bool.h
deleted file mode 100644
index 7525d6c..0000000
--- a/lib/bool.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef _bool_h_
-#define _bool_h_
-
-#ifndef __GNUC__
-
-#ifndef bool
-#define bool int
-#endif
-
-#ifndef true
-#define true 1
-#endif
-
-#ifndef false
-#define false 0
-#endif
-
-#endif
-
-#endif