diff options
author | Oscar Lim <olim@ucla.edu> | 2016-04-09 23:44:31 -0700 |
---|---|---|
committer | Oscar Lim <olim@ucla.edu> | 2016-04-09 23:44:31 -0700 |
commit | 785ede5180cc5326eae126d83ad014bd5d8b2c23 (patch) | |
tree | f92847e05ff3b1f2f791bf245c9d786ae3a652cf | |
parent | cbea9c7432f9cdd12797ef32b1316f7a534b280a (diff) | |
download | luasystem-785ede5180cc5326eae126d83ad014bd5d8b2c23.zip |
Fix compile errors for Windows
-rw-r--r-- | src/time.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -2,6 +2,8 @@ #include <lauxlib.h> #ifdef _WIN32 +#include <float.h> +#include <limits.h> #include <windows.h> #else #include <time.h> |