Commit 943bef2d authored by Yukihiro Matsumoto's avatar Yukihiro Matsumoto

changed type of mrb_int to plain int by default

parent 01435106
......@@ -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))
......
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