From 05ec55f16b389a4377adab84efe374437da8dbd2 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 16 Jun 2023 11:52:14 -0300 Subject: Avoid inclusion loop in 'ltm.h' --- ltm.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ltm.h b/ltm.h index c309e2ae..73b833c6 100644 --- a/ltm.h +++ b/ltm.h @@ -9,7 +9,6 @@ #include "lobject.h" -#include "lstate.h" /* @@ -96,8 +95,8 @@ LUAI_FUNC int luaT_callorderiTM (lua_State *L, const TValue *p1, int v2, int inv, int isfloat, TMS event); LUAI_FUNC void luaT_adjustvarargs (lua_State *L, int nfixparams, - CallInfo *ci, const Proto *p); -LUAI_FUNC void luaT_getvarargs (lua_State *L, CallInfo *ci, + struct CallInfo *ci, const Proto *p); +LUAI_FUNC void luaT_getvarargs (lua_State *L, struct CallInfo *ci, StkId where, int wanted); -- cgit v1.2.3-55-g6feb