diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2020-02-05 23:11:45 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-02-05 23:11:45 +0900 |
| commit | 736ea1f5c71a7e79b6c83b27c96c88ccaba08d2d (patch) | |
| tree | cab5d50208954c503d30615c6596f2affb50425e | |
| parent | ffb55e51f11ee87e71a1241c1e0aa59d96dd07bb (diff) | |
| parent | 36efc3365086c80c72faa27fe7192e089b457b49 (diff) | |
| download | mruby-736ea1f5c71a7e79b6c83b27c96c88ccaba08d2d.tar.gz mruby-736ea1f5c71a7e79b6c83b27c96c88ccaba08d2d.zip | |
Merge pull request #4941 from davidsiaw/mac-compat
Include time.h for ios
| -rw-r--r-- | mrbgems/mruby-io/src/io.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mrbgems/mruby-io/src/io.c b/mrbgems/mruby-io/src/io.c index 4be41ef31..e28946597 100644 --- a/mrbgems/mruby-io/src/io.c +++ b/mrbgems/mruby-io/src/io.c @@ -38,6 +38,7 @@ #else #include <sys/wait.h> + #include <sys/time.h> #include <unistd.h> typedef size_t fsize_t; typedef time_t ftime_t; |
