aboutsummaryrefslogtreecommitdiff
path: root/ldo.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2023-05-22 14:47:54 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2023-05-22 14:47:54 -0300
commit9be74ccc214eb6f4d9d0b9496fd973542c7377d9 (patch)
treee62aacce2266814e8c09a490e02ac6ad9cf13be0 /ldo.h
parent09f3c2372f5dbeaec9f50614a26c1b5761726a88 (diff)
downloadlua-9be74ccc214eb6f4d9d0b9496fd973542c7377d9.tar.gz
lua-9be74ccc214eb6f4d9d0b9496fd973542c7377d9.tar.bz2
lua-9be74ccc214eb6f4d9d0b9496fd973542c7377d9.zip
Several functions turned 'static'
Several functions that were already being used only inside their own file have been declared as 'static'.
Diffstat (limited to 'ldo.h')
-rw-r--r--ldo.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/ldo.h b/ldo.h
index 1aa446ad..56008ab3 100644
--- a/ldo.h
+++ b/ldo.h
@@ -71,7 +71,6 @@ LUAI_FUNC int luaD_pretailcall (lua_State *L, CallInfo *ci, StkId func,
71LUAI_FUNC CallInfo *luaD_precall (lua_State *L, StkId func, int nResults); 71LUAI_FUNC CallInfo *luaD_precall (lua_State *L, StkId func, int nResults);
72LUAI_FUNC void luaD_call (lua_State *L, StkId func, int nResults); 72LUAI_FUNC void luaD_call (lua_State *L, StkId func, int nResults);
73LUAI_FUNC void luaD_callnoyield (lua_State *L, StkId func, int nResults); 73LUAI_FUNC void luaD_callnoyield (lua_State *L, StkId func, int nResults);
74LUAI_FUNC StkId luaD_tryfuncTM (lua_State *L, StkId func);
75LUAI_FUNC int luaD_closeprotected (lua_State *L, ptrdiff_t level, int status); 74LUAI_FUNC int luaD_closeprotected (lua_State *L, ptrdiff_t level, int status);
76LUAI_FUNC int luaD_pcall (lua_State *L, Pfunc func, void *u, 75LUAI_FUNC int luaD_pcall (lua_State *L, Pfunc func, void *u,
77 ptrdiff_t oldtop, ptrdiff_t ef); 76 ptrdiff_t oldtop, ptrdiff_t ef);