aboutsummaryrefslogtreecommitdiff
path: root/ltm.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2022-12-14 16:20:39 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2022-12-14 16:20:39 -0300
commit6aabf4b15e7637c2ab4133abf3df0a77f34b6005 (patch)
tree16ca80a0820c3ebca4b64736fe6f5c9b9de2a19d /ltm.h
parentfa2f294dd1269115bf9cf534dd38553e2f606801 (diff)
downloadlua-6aabf4b15e7637c2ab4133abf3df0a77f34b6005.tar.gz
lua-6aabf4b15e7637c2ab4133abf3df0a77f34b6005.tar.bz2
lua-6aabf4b15e7637c2ab4133abf3df0a77f34b6005.zip
Details in some header files
Identifier LUA_NUMTAGS was deprecated (changed to LUA_NUMTYPES) + better handling of some inclusion loops.
Diffstat (limited to 'ltm.h')
-rw-r--r--ltm.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/ltm.h b/ltm.h
index 73b833c6..c309e2ae 100644
--- a/ltm.h
+++ b/ltm.h
@@ -9,6 +9,7 @@
9 9
10 10
11#include "lobject.h" 11#include "lobject.h"
12#include "lstate.h"
12 13
13 14
14/* 15/*
@@ -95,8 +96,8 @@ LUAI_FUNC int luaT_callorderiTM (lua_State *L, const TValue *p1, int v2,
95 int inv, int isfloat, TMS event); 96 int inv, int isfloat, TMS event);
96 97
97LUAI_FUNC void luaT_adjustvarargs (lua_State *L, int nfixparams, 98LUAI_FUNC void luaT_adjustvarargs (lua_State *L, int nfixparams,
98 struct CallInfo *ci, const Proto *p); 99 CallInfo *ci, const Proto *p);
99LUAI_FUNC void luaT_getvarargs (lua_State *L, struct CallInfo *ci, 100LUAI_FUNC void luaT_getvarargs (lua_State *L, CallInfo *ci,
100 StkId where, int wanted); 101 StkId where, int wanted);
101 102
102 103