quiet some macosx warnings

This commit is contained in:
nhmall
2019-11-15 21:20:38 -05:00
parent f319a8ce3f
commit 298af2294f
7 changed files with 133 additions and 55 deletions

6
include/system.h Normal file → Executable file
View File

@@ -573,4 +573,10 @@ E int FDECL(atoi, (const char *));
#include "lualib.h"
#include "lauxlib.h"
#if defined(WIN32)
#define LUA_INTCAST(i) ((int) i)
#else
#define LUA_INTCAST(i) (i)
#endif
#endif /* SYSTEM_H */