diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2021-03-03 10:15:50 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2021-03-03 10:15:50 +0900 |
| commit | 42afafbd236a7839fefacac7b1b6b885bd7acbc9 (patch) | |
| tree | bc956ba98a74054a6cbdef5315a66c2c78278e98 /mrbgems/mruby-time/src | |
| parent | 79e2ad9a449366b27f7418a72f61515860715e44 (diff) | |
| download | mruby-42afafbd236a7839fefacac7b1b6b885bd7acbc9.tar.gz mruby-42afafbd236a7839fefacac7b1b6b885bd7acbc9.zip | |
time.c: fixed wrong condition to include `unistd.h`.
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 626fcdcd0..63d2f1c5b 100644 --- a/mrbgems/mruby-time/src/time.c +++ b/mrbgems/mruby-time/src/time.c @@ -21,7 +21,7 @@ #endif #include <stdlib.h> -#ifdef _WIN32 +#ifndef _WIN32 #include <unistd.h> #endif |
