From 4bbcb908ecfcc23483b70a000b7c5b75b9f76108 Mon Sep 17 00:00:00 2001 From: Dibyendu Majumdar Date: Wed, 8 Jul 2020 21:53:44 +0100 Subject: [PATCH] issue #157 fix build error on windows --- include/lua.h | 3 +++ include/ravi_jit.h | 3 --- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/lua.h b/include/lua.h index 88657cfd..d7db2593 100644 --- a/include/lua.h +++ b/include/lua.h @@ -639,6 +639,9 @@ LUA_API int ravi_list_code(lua_State *L); /* Returns a table with various system limits */ LUA_API int ravi_get_limits(lua_State *L); +/* Options */ +LUA_API const char *raviV_options(struct lua_State *L); + /* Following are for debugging purposes only */ LUAI_DDEC int ravi_parser_debug; LUA_API void ravi_set_debuglevel(int level); diff --git a/include/ravi_jit.h b/include/ravi_jit.h index 840488f9..d684d19a 100644 --- a/include/ravi_jit.h +++ b/include/ravi_jit.h @@ -96,9 +96,6 @@ void raviV_dumpASM(struct lua_State *L, struct Proto *p); /* Return JIT backend identifier */ const char *raviV_jit_id(struct lua_State *L); -/* Options */ -const char *raviV_options(struct lua_State *L); - #ifdef __cplusplus } #endif