summaryrefslogtreecommitdiffhomepage
path: root/include/mrbconf.h
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2013-03-28 19:34:15 -0700
committerYukihiro "Matz" Matsumoto <[email protected]>2013-03-28 19:34:15 -0700
commitb29b4218171afd8ffe600d0f270b958915fc061f (patch)
tree9be935e9d07758b6e5c7ce545c2f968d2bb7b0e5 /include/mrbconf.h
parent5fb12a990d4d30876ce21e6225acbef35f47b48a (diff)
parent74f04849c4d04425e911acbe6bedb2596046f5b0 (diff)
downloadmruby-b29b4218171afd8ffe600d0f270b958915fc061f.tar.gz
mruby-b29b4218171afd8ffe600d0f270b958915fc061f.zip
Merge pull request #1101 from monaka/pr-cleanup-includes
Cleanup includes
Diffstat (limited to 'include/mrbconf.h')
-rw-r--r--include/mrbconf.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/mrbconf.h b/include/mrbconf.h
index 988bdf0ad..bd8f6ea80 100644
--- a/include/mrbconf.h
+++ b/include/mrbconf.h
@@ -111,14 +111,6 @@ typedef short mrb_sym;
#define DISABLE_DEBUG
#endif
-#ifndef FALSE
-# define FALSE 0
-#endif
-
-#ifndef TRUE
-# define TRUE 1
-#endif
-
#ifdef _MSC_VER
# include <float.h>
# define inline __inline
@@ -154,4 +146,12 @@ typedef _Bool mrb_bool;
# include <stdio.h>
#endif
+#ifndef FALSE
+# define FALSE 0
+#endif
+
+#ifndef TRUE
+# define TRUE 1
+#endif
+
#endif /* MRUBYCONF_H */