xref: /netbsd/external/mit/lua/dist/src/lapi.h (revision 6550d01e)
1 /*	$NetBSD: lapi.h,v 1.1.1.1 2010/10/31 11:16:54 mbalmer Exp $	*/
2 
3 /*
4 ** Id: lapi.h,v 2.2.1.1 2007/12/27 13:02:25 roberto Exp
5 ** Auxiliary functions from Lua API
6 ** See Copyright Notice in lua.h
7 */
8 
9 #ifndef lapi_h
10 #define lapi_h
11 
12 
13 #include "lobject.h"
14 
15 
16 LUAI_FUNC void luaA_pushobject (lua_State *L, const TValue *o);
17 
18 #endif
19