Commit c7ef2205 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto

Merge pull request #2206 from mattn/fix_build_mingw

Fix build on mingw32/64: struct timeval isn't defined in default. See: 6...
parents ad2e6d0c 0b5fe0ad
......@@ -10,6 +10,10 @@
#include "mruby/class.h"
#include "mruby/data.h"
#if defined(__MINGW64__) || defined(__MINGW32__)
# include <sys/time.h>
#endif
/** Time class configuration */
/* gettimeofday(2) */
......
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