blob: 6a4915d0d192240cae673f8f59da962444e56478 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/*
** $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
|