summaryrefslogtreecommitdiff
path: root/src/lstring.c
diff options
context:
space:
mode:
authorLua Team <team@lua.org>2014-12-11 12:00:00 +0000
committerrepogen <>2014-12-11 12:00:00 +0000
commitfd9a52f7ff522a363ff2495d33b331c221981d60 (patch)
treea3fca3cc276f2a2ee44a498984497a9b82e685ee /src/lstring.c
parent92fdb95364ed274752b8634c8ba3dca1f1dc5fb3 (diff)
downloadlua-github-5.3.0-rc0.tar.gz
Lua 5.3.0-rc05.3.0-rc0
Diffstat (limited to 'src/lstring.c')
-rw-r--r--src/lstring.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/lstring.c b/src/lstring.c
index df28a7f2..2947113c 100644
--- a/src/lstring.c
+++ b/src/lstring.c
@@ -1,15 +1,17 @@
/*
-** $Id: lstring.c,v 2.44 2014/07/21 16:02:10 roberto Exp $
+** $Id: lstring.c,v 2.45 2014/11/02 19:19:04 roberto Exp $
** String table (keeps all strings handled by Lua)
** See Copyright Notice in lua.h
*/
-
-#include <string.h>
-
#define lstring_c
#define LUA_CORE
+#include "lprefix.h"
+
+
+#include <string.h>
+
#include "lua.h"
#include "ldebug.h"