mirror of
https://github.com/lua/lua.git
synced 2024-12-14 04:23:26 +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
|
|
|