mirror of
https://github.com/lua/lua.git
synced 2025-01-28 06:03:00 +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
|
|
|