diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2013-04-25 13:07:52 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2013-04-25 13:07:52 -0300 |
commit | 9600c60df3e5a971ca642734470901775ef67ff9 (patch) | |
tree | e53e526676be089fde966143599f22c4a5e862fb /ltm.h | |
parent | 32bf6c9b277d04a35591ca6420cf1518ebc1a7f3 (diff) | |
download | lua-9600c60df3e5a971ca642734470901775ef67ff9.tar.gz lua-9600c60df3e5a971ca642734470901775ef67ff9.tar.bz2 lua-9600c60df3e5a971ca642734470901775ef67ff9.zip |
functions 'get_equalTM' and 'call_orderTM' moved to other files
to make 'lvm.c' smaller
Diffstat (limited to 'ltm.h')
-rw-r--r-- | ltm.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltm.h,v 2.12 2013/04/12 19:07:09 roberto Exp roberto $ | 2 | ** $Id: ltm.h,v 2.13 2013/04/25 15:59:42 roberto Exp roberto $ |
3 | ** Tag methods | 3 | ** Tag methods |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -58,5 +58,10 @@ LUAI_FUNC void luaT_callTM (lua_State *L, const TValue *f, const TValue *p1, | |||
58 | const TValue *p2, TValue *p3, int hasres); | 58 | const TValue *p2, TValue *p3, int hasres); |
59 | LUAI_FUNC int luaT_callbinTM (lua_State *L, const TValue *p1, const TValue *p2, | 59 | LUAI_FUNC int luaT_callbinTM (lua_State *L, const TValue *p1, const TValue *p2, |
60 | StkId res, TMS event); | 60 | StkId res, TMS event); |
61 | LUAI_FUNC const TValue *luaT_getequalTM (lua_State *L, Table *mt1, Table *mt2); | ||
62 | LUAI_FUNC int luaT_callorderTM (lua_State *L, const TValue *p1, | ||
63 | const TValue *p2, TMS event); | ||
64 | |||
65 | |||
61 | 66 | ||
62 | #endif | 67 | #endif |