changed type of mrb_int to plain int by default

This commit is contained in:
Yukihiro Matsumoto
2012-04-30 00:08:50 +09:00
parent 014351061a
commit 943bef2d7c
+1 -1
View File
@@ -17,7 +17,7 @@ typedef double mrb_float;
#endif
#define readfloat(p) (mrb_float)strtod((p),NULL)
typedef int32_t mrb_int;
typedef int mrb_int;
typedef intptr_t mrb_sym;
#define readint(p,base) strtol((p),NULL,(base))