diff options
| author | Yukihiro Matsumoto <[email protected]> | 2012-06-15 14:07:24 +0900 |
|---|---|---|
| committer | Yukihiro Matsumoto <[email protected]> | 2012-06-15 14:07:24 +0900 |
| commit | 8c838de4a83956fec100e2da8dc4f49c4ace6298 (patch) | |
| tree | aa793164c3673c41e450a19afea2d84d4f2594f6 /src/init.c | |
| parent | 9e78fea7b3d2d0cb99d57913885fa48dc6843d09 (diff) | |
| download | mruby-8c838de4a83956fec100e2da8dc4f49c4ace6298.tar.gz mruby-8c838de4a83956fec100e2da8dc4f49c4ace6298.zip | |
Time class made optinal
Diffstat (limited to 'src/init.c')
| -rw-r--r-- | src/init.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/init.c b/src/init.c index 1f7d4d364..13b074fd1 100644 --- a/src/init.c +++ b/src/init.c @@ -56,7 +56,9 @@ mrb_init_core(mrb_state *mrb) #endif mrb_init_exception(mrb); mrb_init_print(mrb); +#ifdef INCLUDE_TIME mrb_init_time(mrb); +#endif #ifdef INCLUDE_MATH mrb_init_math(mrb); #endif |
