summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorYukihiro Matsumoto <[email protected]>2012-09-12 16:09:03 +0900
committerYukihiro Matsumoto <[email protected]>2012-09-12 16:09:03 +0900
commit3a49dfd198da706ffc5ccfc68125d8e332c1b354 (patch)
tree18d96c4010b27b92578efdeabc4660cb34029d2a /src
parent0475196d2697762213c45a7fc71a7e010c6f766e (diff)
downloadmruby-3a49dfd198da706ffc5ccfc68125d8e332c1b354.tar.gz
mruby-3a49dfd198da706ffc5ccfc68125d8e332c1b354.zip
remoce duplicate declaration of TOUPPER/TOLOWER
Diffstat (limited to 'src')
-rw-r--r--src/encoding.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/encoding.h b/src/encoding.h
index 1312fb947..00cb92bd8 100644
--- a/src/encoding.h
+++ b/src/encoding.h
@@ -15,11 +15,6 @@ extern "C" {
#include "oniguruma.h"
#include "mruby/data.h"
-int mrb_tolower(int c);
-int mrb_toupper(int c);
-#define TOUPPER(c) mrb_toupper((unsigned char)(c))
-#define TOLOWER(c) mrb_tolower((unsigned char)(c))
-
#define FL_USHIFT 12
#define FL_USER0 (((int)1)<<(FL_USHIFT+0))