From 9a7dd0a0770178529c704c08bc446e3533b1f3e5 Mon Sep 17 00:00:00 2001 From: Julian Laubstein Date: Wed, 4 Nov 2015 22:32:11 +0100 Subject: Outsourced all libraries into submodules --- lib/lua | 1 + lib/lua/src/lundump.h | 36 ------------------------------------ 2 files changed, 1 insertion(+), 36 deletions(-) create mode 160000 lib/lua delete mode 100644 lib/lua/src/lundump.h (limited to 'lib/lua/src/lundump.h') diff --git a/lib/lua b/lib/lua new file mode 160000 index 000000000..dd27acefc --- /dev/null +++ b/lib/lua @@ -0,0 +1 @@ +Subproject commit dd27acefcd98a28c68e686f414a42302113471fc diff --git a/lib/lua/src/lundump.h b/lib/lua/src/lundump.h deleted file mode 100644 index c80189dbf..000000000 --- a/lib/lua/src/lundump.h +++ /dev/null @@ -1,36 +0,0 @@ -/* -** $Id: lundump.h,v 1.37.1.1 2007/12/27 13:02:25 roberto Exp $ -** load precompiled Lua chunks -** See Copyright Notice in lua.h -*/ - -#ifndef lundump_h -#define lundump_h - -#include "lobject.h" -#include "lzio.h" - -/* load one chunk; from lundump.c */ -LUAI_FUNC Proto* luaU_undump (lua_State* L, ZIO* Z, Mbuffer* buff, const char* name); - -/* make header; from lundump.c */ -LUAI_FUNC void luaU_header (char* h); - -/* dump one chunk; from ldump.c */ -LUAI_FUNC int luaU_dump (lua_State* L, const Proto* f, lua_Writer w, void* data, int strip); - -#ifdef luac_c -/* print one chunk; from print.c */ -LUAI_FUNC void luaU_print (const Proto* f, int full); -#endif - -/* for header of binary files -- this is Lua 5.1 */ -#define LUAC_VERSION 0x51 - -/* for header of binary files -- this is the official format */ -#define LUAC_FORMAT 0 - -/* size of header of binary files */ -#define LUAC_HEADERSIZE 12 - -#endif -- cgit v1.2.3