aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2009-11-19 14:24:41 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2009-11-19 14:24:41 -0200
commitb40a38a8ac4c9e04b8d878b54d8c23022620f2d6 (patch)
treebf1b4fb2870bee6b65f7f9f82d2f2f649cc835d8
parentac899a63079a7dc92f3dd705c41408012dd214c4 (diff)
downloadlua-b40a38a8ac4c9e04b8d878b54d8c23022620f2d6.tar.gz
lua-b40a38a8ac4c9e04b8d878b54d8c23022620f2d6.tar.bz2
lua-b40a38a8ac4c9e04b8d878b54d8c23022620f2d6.zip
remove declaration of removed function
-rw-r--r--ldo.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/ldo.h b/ldo.h
index 7f12ff85..f59c045d 100644
--- a/ldo.h
+++ b/ldo.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldo.h,v 2.14 2009/07/08 16:06:51 roberto Exp roberto $ 2** $Id: ldo.h,v 2.15 2009/07/15 17:26:14 roberto Exp roberto $
3** Stack and Call structure of Lua 3** Stack and Call structure of Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -34,7 +34,6 @@ LUAI_FUNC void luaD_call (lua_State *L, StkId func, int nResults,
34LUAI_FUNC int luaD_pcall (lua_State *L, Pfunc func, void *u, 34LUAI_FUNC int luaD_pcall (lua_State *L, Pfunc func, void *u,
35 ptrdiff_t oldtop, ptrdiff_t ef); 35 ptrdiff_t oldtop, ptrdiff_t ef);
36LUAI_FUNC int luaD_poscall (lua_State *L, StkId firstResult); 36LUAI_FUNC int luaD_poscall (lua_State *L, StkId firstResult);
37LUAI_FUNC void luaD_reallocCI (lua_State *L, int newsize);
38LUAI_FUNC void luaD_reallocstack (lua_State *L, int newsize); 37LUAI_FUNC void luaD_reallocstack (lua_State *L, int newsize);
39LUAI_FUNC void luaD_growstack (lua_State *L, int n); 38LUAI_FUNC void luaD_growstack (lua_State *L, int n);
40LUAI_FUNC void luaD_shrinkstack (lua_State *L); 39LUAI_FUNC void luaD_shrinkstack (lua_State *L);