summaryrefslogtreecommitdiff
path: root/utils/bool.h
diff options
context:
space:
mode:
authorchatty1993-12-22 12:26:39 +0000
committerchatty1993-12-22 12:26:39 +0000
commit7ebcfbbbfb1f844261b3c810684ffa244e41080b (patch)
tree71c90ea1a6d2a73c33935500cd033baf3b508163 /utils/bool.h
parentfa5d3f424a09155e714394eb9b501c81373e0973 (diff)
downloadivy-league-7ebcfbbbfb1f844261b3c810684ffa244e41080b.zip
ivy-league-7ebcfbbbfb1f844261b3c810684ffa244e41080b.tar.gz
ivy-league-7ebcfbbbfb1f844261b3c810684ffa244e41080b.tar.bz2
ivy-league-7ebcfbbbfb1f844261b3c810684ffa244e41080b.tar.xz
replaced TRUE/FALSE by true/false
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 */