aboutsummaryrefslogtreecommitdiff
path: root/lauxlib.h
diff options
context:
space:
mode:
Diffstat (limited to 'lauxlib.h')
-rw-r--r--lauxlib.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/lauxlib.h b/lauxlib.h
index 9f91f6a6..cd4d01e5 100644
--- a/lauxlib.h
+++ b/lauxlib.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lauxlib.h,v 1.133 2017/06/27 18:32:49 roberto Exp roberto $ 2** $Id: lauxlib.h $
3** Auxiliary functions for building Lua libraries 3** Auxiliary functions for building Lua libraries
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -77,6 +77,9 @@ LUALIB_API int (luaL_checkoption) (lua_State *L, int arg, const char *def,
77LUALIB_API int (luaL_fileresult) (lua_State *L, int stat, const char *fname); 77LUALIB_API int (luaL_fileresult) (lua_State *L, int stat, const char *fname);
78LUALIB_API int (luaL_execresult) (lua_State *L, int stat); 78LUALIB_API int (luaL_execresult) (lua_State *L, int stat);
79 79
80LUALIB_API int (luaL_resourcetryagain) (lua_State *L);
81
82
80/* predefined references */ 83/* predefined references */
81#define LUA_NOREF (-2) 84#define LUA_NOREF (-2)
82#define LUA_REFNIL (-1) 85#define LUA_REFNIL (-1)