summaryrefslogtreecommitdiff
path: root/src/lstring.c
diff options
context:
space:
mode:
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"