Move TRUE/FALSE existence checks.

This commit is contained in:
Masaki Muranaka
2013-03-29 10:41:28 +09:00
parent 2b5b161f8b
commit 2f8dc97e2d
+8 -8
View File
@@ -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 */