mirror of
https://github.com/lua/lua.git
synced 2025-02-04 06:13:04 +08:00
17 lines
226 B
C
17 lines
226 B
C
|
/*
|
||
|
** $Id: $
|
||
|
*/
|
||
|
|
||
|
#ifndef fallback_h
|
||
|
#define fallback_h
|
||
|
|
||
|
void luaI_errorFB (void);
|
||
|
void luaI_indexFB (void);
|
||
|
void luaI_gettableFB (void);
|
||
|
void luaI_arithFB (void);
|
||
|
void luaI_concatFB (void);
|
||
|
void luaI_orderFB (void);
|
||
|
|
||
|
#endif
|
||
|
|