aboutsummaryrefslogtreecommitdiff
path: root/lmem.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2006-09-14 15:42:28 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2006-09-14 15:42:28 -0300
commitbd869c7b3147c277a974c896a5e3a013979ac64e (patch)
tree96ab39fd05ccf6a849cf60e8ce618aa7a8ff79d8 /lmem.h
parentd5a23dde9038a9e29d90946a2f386d98fec08f3a (diff)
downloadlua-bd869c7b3147c277a974c896a5e3a013979ac64e.tar.gz
lua-bd869c7b3147c277a974c896a5e3a013979ac64e.tar.bz2
lua-bd869c7b3147c277a974c896a5e3a013979ac64e.zip
details
Diffstat (limited to 'lmem.h')
-rw-r--r--lmem.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lmem.h b/lmem.h
index d6bbdd9f..46388f0a 100644
--- a/lmem.h
+++ b/lmem.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lmem.h,v 1.30 2005/03/18 16:38:02 roberto Exp roberto $ 2** $Id: lmem.h,v 1.31 2005/04/25 19:24:10 roberto Exp roberto $
3** Interface to Memory Manager 3** Interface to Memory Manager
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -43,7 +43,7 @@ LUAI_FUNC void *luaM_realloc_ (lua_State *L, void *block, size_t oldsize,
43LUAI_FUNC void *luaM_toobig (lua_State *L); 43LUAI_FUNC void *luaM_toobig (lua_State *L);
44LUAI_FUNC void *luaM_growaux_ (lua_State *L, void *block, int *size, 44LUAI_FUNC void *luaM_growaux_ (lua_State *L, void *block, int *size,
45 size_t size_elem, int limit, 45 size_t size_elem, int limit,
46 const char *errormsg); 46 const char *what);
47 47
48#endif 48#endif
49 49