summaryrefslogtreecommitdiff
path: root/utils/bool.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/bool.h')
-rw-r--r--utils/bool.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/utils/bool.h b/utils/bool.h
index ec3b36d..67f2265 100644
--- a/utils/bool.h
+++ b/utils/bool.h
@@ -14,14 +14,14 @@
#ifndef _bool_h
#define _bool_h 1
-#if defined(TRUE)
-#undef TRUE
-#undef FALSE
+#if defined(true)
+#undef true
+#undef false
#endif
enum bool {
- TRUE = 1,
- FALSE = 0
+ true = 1,
+ false = 0
};
#endif /* _bool_h */