Skip to content

Commit

Permalink
issue #157 cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
dibyendumajumdar committed Jul 5, 2020
1 parent 9e2a4f4 commit 7dd5c1f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
4 changes: 0 additions & 4 deletions include/lauxlib.h
Original file line number Diff line number Diff line change
Expand Up @@ -294,10 +294,6 @@ LUALIB_API void (luaL_setmetatable)(lua_State *L, const char *tname);
LUALIB_API void *(luaL_testudata)(lua_State *L, int ud, const char *tname);
LUALIB_API void *(luaL_checkudata)(lua_State *L, int ud, const char *tname);

LUALIB_API int (raviL_build_ast_from_buffer) (lua_State *L, const char *buff, size_t size,
const char *name, const char *mode);

LUALIB_API int (raviL_dumpast) (lua_State *L);
LUALIB_API void *ravi_alloc_f(void *msp, void *ptr, size_t osize, size_t nsize);

#endif
Expand Down
6 changes: 0 additions & 6 deletions src/lauxlib.c
Original file line number Diff line number Diff line change
Expand Up @@ -1081,9 +1081,3 @@ LUALIB_API void luaL_checkversion_ (lua_State *L, lua_Number ver, size_t sz) {
luaL_error(L, "version mismatch: app. needs %f, Lua core provides %f",
(LUAI_UACNUMBER)ver, (LUAI_UACNUMBER)*v);
}

LUALIB_API int (raviL_dumpast) (lua_State *L) {
(void) L;
return 0;
}

0 comments on commit 7dd5c1f

Please sign in to comment.