Commit 0b5fe0ad authored by mattn's avatar mattn

Fix build on mingw32/64: struct timeval isn't defined in default. See:...

Fix build on mingw32/64: struct timeval isn't defined in default. See: 642477ef
parent ad2e6d0c
......@@ -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