1/*	$NetBSD$	*/
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
16LUAI_FUNC void luaA_pushobject (lua_State *L, const TValue *o);
17
18#endif
19