mirror of
https://github.com/lua/lua
synced 2024-11-26 14:51:21 +03: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
|
|
|