aboutsummaryrefslogtreecommitdiff
path: root/src/lauxlib.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lauxlib.h')
-rw-r--r--src/lauxlib.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lauxlib.h b/src/lauxlib.h
index 505a9f52..80585f64 100644
--- a/src/lauxlib.h
+++ b/src/lauxlib.h
@@ -75,7 +75,11 @@ LUALIB_API const char *(luaL_gsub) (lua_State *L, const char *s, const char *p,
75LUALIB_API const char *(luaL_findtable) (lua_State *L, int idx, 75LUALIB_API const char *(luaL_findtable) (lua_State *L, int idx,
76 const char *fname, int szhint); 76 const char *fname, int szhint);
77 77
78 78/* From Lua 5.2. */
79LUALIB_API int (luaL_loadfilex) (lua_State *L, const char *filename,
80 const char *mode);
81LUALIB_API int (luaL_loadbufferx) (lua_State *L, const char *buff, size_t sz,
82 const char *name, const char *mode);
79 83
80 84
81/* 85/*