summaryrefslogtreecommitdiffhomepage
path: root/src/string.c
diff options
context:
space:
mode:
authorMasaki Muranaka <[email protected]>2012-06-15 16:55:49 +0900
committerMasaki Muranaka <[email protected]>2012-06-15 16:55:49 +0900
commit2c93fab066c55a64e77bb5a7b593553a4ae61075 (patch)
tree2bbdb82c99ae982cbba7ae4952593f6fd042fb20 /src/string.c
parent49133111554a3e0d6a4ff415641cc5ec721d8df4 (diff)
downloadmruby-2c93fab066c55a64e77bb5a7b593553a4ae61075.tar.gz
mruby-2c93fab066c55a64e77bb5a7b593553a4ae61075.zip
Remove TRUE/FALSE definition in C sources. (Reported by #282 but not applied.)
Diffstat (limited to 'src/string.c')
-rw-r--r--src/string.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/string.c b/src/string.c
index 566c056cf..6392b504c 100644
--- a/src/string.c
+++ b/src/string.c
@@ -22,14 +22,6 @@
#include "st.h"
#endif //ENABLE_REGEXP
-#ifndef FALSE
-#define FALSE 0
-#endif
-
-#ifndef TRUE
-#define TRUE 1
-#endif
-
const char mrb_digitmap[] = "0123456789abcdefghijklmnopqrstuvwxyz";
#ifdef ENABLE_REGEXP