summaryrefslogtreecommitdiffstats
path: root/lua/lapi.h
diff options
context:
space:
mode:
authorEmil Renner Berthing <esmil@mailme.dk>2011-01-31 22:50:04 +0100
committerEmil Renner Berthing <esmil@mailme.dk>2011-02-04 14:50:59 +0100
commite0f4a41152065e4051f8245ddb6b719387584c80 (patch)
tree626334bea263a3da2fc750d099ced314220e07b4 /lua/lapi.h
downloadlem-e0f4a41152065e4051f8245ddb6b719387584c80.tar.gz
lem-e0f4a41152065e4051f8245ddb6b719387584c80.tar.xz
lem-e0f4a41152065e4051f8245ddb6b719387584c80.zip
initial commit
Diffstat (limited to 'lua/lapi.h')
-rw-r--r--lua/lapi.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/lua/lapi.h b/lua/lapi.h
new file mode 100644
index 0000000..2c3fab2
--- /dev/null
+++ b/lua/lapi.h
@@ -0,0 +1,16 @@
+/*
+** $Id: lapi.h,v 2.2.1.1 2007/12/27 13:02:25 roberto Exp $
+** Auxiliary functions from Lua API
+** See Copyright Notice in lua.h
+*/
+
+#ifndef lapi_h
+#define lapi_h
+
+
+#include "lobject.h"
+
+
+LUAI_FUNC void luaA_pushobject (lua_State *L, const TValue *o);
+
+#endif