module to implement default fallbacks and lock mechanisms

This commit is contained in:
Roberto Ierusalimschy
1994-11-07 13:20:56 -02:00
parent 62ec3797d5
commit 63d300167e
2 changed files with 67 additions and 0 deletions

16
fallback.h Normal file
View File

@@ -0,0 +1,16 @@
/*
** $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