diff options
| author | windwiny <[email protected]> | 2014-05-02 22:28:09 +0800 |
|---|---|---|
| committer | windwiny <[email protected]> | 2014-05-02 22:28:09 +0800 |
| commit | 642477ef6a92c553d7abb00051674f4b518046c3 (patch) | |
| tree | 6bee78eb6b902cd873e14c7459a970ce2cf46eea /mrbgems/mruby-time/src | |
| parent | d91c9a9ea41349b2455ed89e4fbd46de0374c53b (diff) | |
| download | mruby-642477ef6a92c553d7abb00051674f4b518046c3.tar.gz mruby-642477ef6a92c553d7abb00051674f4b518046c3.zip | |
Update time.c
miss __MINGW32__ macro check
Diffstat (limited to 'mrbgems/mruby-time/src')
| -rw-r--r-- | mrbgems/mruby-time/src/time.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mrbgems/mruby-time/src/time.c b/mrbgems/mruby-time/src/time.c index 1ffab9ae6..0427fe3c0 100644 --- a/mrbgems/mruby-time/src/time.c +++ b/mrbgems/mruby-time/src/time.c @@ -54,7 +54,7 @@ typedef long suseconds_t; -# ifndef __MINGW64__ +# if (!defined __MINGW64__) && (!defined __MINGW32__) struct timeval { time_t tv_sec; suseconds_t tv_usec; |
