diff options
Diffstat (limited to 'src/lj_lib.h')
-rw-r--r-- | src/lj_lib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_lib.h b/src/lj_lib.h index 814c9739..6782e725 100644 --- a/src/lj_lib.h +++ b/src/lj_lib.h | |||
@@ -49,7 +49,7 @@ LJ_FUNC int lj_lib_checkopt(lua_State *L, int narg, int def, const char *lst); | |||
49 | #define lj_lib_upvalue(L, n) \ | 49 | #define lj_lib_upvalue(L, n) \ |
50 | (&gcref((L->base-1)->fr.func)->fn.c.upvalue[(n)-1]) | 50 | (&gcref((L->base-1)->fr.func)->fn.c.upvalue[(n)-1]) |
51 | 51 | ||
52 | #ifdef LUA_USE_WIN | 52 | #if LJ_TARGET_WINDOWS |
53 | #define lj_lib_checkfpu(L) \ | 53 | #define lj_lib_checkfpu(L) \ |
54 | do { setnumV(L->top++, (lua_Number)1437217655); \ | 54 | do { setnumV(L->top++, (lua_Number)1437217655); \ |
55 | if (lua_tointeger(L, -1) != 1437217655) lj_err_caller(L, LJ_ERR_BADFPU); \ | 55 | if (lua_tointeger(L, -1) != 1437217655) lj_err_caller(L, LJ_ERR_BADFPU); \ |