Commit 3a49dfd1 authored by Yukihiro Matsumoto's avatar Yukihiro Matsumoto

remoce duplicate declaration of TOUPPER/TOLOWER

parent 0475196d
...@@ -15,11 +15,6 @@ extern "C" { ...@@ -15,11 +15,6 @@ extern "C" {
#include "oniguruma.h" #include "oniguruma.h"
#include "mruby/data.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_USHIFT 12
#define FL_USER0 (((int)1)<<(FL_USHIFT+0)) #define FL_USER0 (((int)1)<<(FL_USHIFT+0))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment