1
0
mirror of https://github.com/lua/lua.git synced 2025-01-14 05:43:00 +08:00
lua/fallback.h

21 lines
381 B
C
Raw Normal View History

/*
1994-11-08 17:56:39 -02:00
** $Id: fallback.h,v 1.1 1994/11/07 15:20:56 roberto Exp roberto $
*/
#ifndef fallback_h
#define fallback_h
1994-11-08 17:56:39 -02:00
#include "opcode.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);
1994-11-08 17:56:39 -02:00
Object *luaI_getlocked (int ref);
void luaI_travlock (void (*fn)(Object *));
#endif