From 28fdbcf393c6c709a21a29f47cfa4c6ed4031ae9 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Sun, 2 Nov 2014 17:19:04 -0200 Subject: added include for 'lprefix.h', for stuff that must be added before any other header file --- lstring.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'lstring.c') diff --git a/lstring.c b/lstring.c index 8e7516af..27b06dd3 100644 --- a/lstring.c +++ b/lstring.c @@ -1,15 +1,17 @@ /* -** $Id: lstring.c,v 2.43 2014/07/18 14:46:47 roberto Exp roberto $ +** $Id: lstring.c,v 2.44 2014/07/21 16:02:10 roberto Exp roberto $ ** String table (keeps all strings handled by Lua) ** See Copyright Notice in lua.h */ - -#include - #define lstring_c #define LUA_CORE +#include "lprefix.h" + + +#include + #include "lua.h" #include "ldebug.h" -- cgit v1.2.3-55-g6feb