aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lua.h b/lua.h
index aa969ae0..0bd97084 100644
--- a/lua.h
+++ b/lua.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.h,v 1.211 2005/08/12 13:34:15 roberto Exp roberto $ 2** $Id: lua.h,v 1.212 2005/08/25 20:02:08 roberto Exp roberto $
3** Lua - An Extensible Extension Language 3** Lua - An Extensible Extension Language
4** Lua.org, PUC-Rio, Brazil (http://www.lua.org) 4** Lua.org, PUC-Rio, Brazil (http://www.lua.org)
5** See Copyright Notice at the end of this file 5** See Copyright Notice at the end of this file
@@ -239,6 +239,7 @@ LUA_API int (lua_next) (lua_State *L, int idx);
239LUA_API void (lua_concat) (lua_State *L, int n); 239LUA_API void (lua_concat) (lua_State *L, int n);
240 240
241LUA_API lua_Alloc (lua_getallocf) (lua_State *L, void **ud); 241LUA_API lua_Alloc (lua_getallocf) (lua_State *L, void **ud);
242LUA_API void lua_setallocf (lua_State *L, lua_Alloc f, void *ud);
242 243
243 244
244 245