mirror of
https://github.com/lua/lua
synced 2024-11-23 05:11:45 +03:00
16 lines
231 B
C
16 lines
231 B
C
/*
|
|
** $Id: lbuiltin.h,v 1.1 1997/09/16 19:25:59 roberto Exp roberto $
|
|
** Built-in functions
|
|
** See Copyright Notice in lua.h
|
|
*/
|
|
|
|
#ifndef lbuiltin_h
|
|
#define lbuiltin_h
|
|
|
|
#include "lua.h"
|
|
|
|
void luaB_predefine (lua_State *L);
|
|
|
|
|
|
#endif
|