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 --- lstrlib.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'lstrlib.c') diff --git a/lstrlib.c b/lstrlib.c index caac826d..99dbee06 100644 --- a/lstrlib.c +++ b/lstrlib.c @@ -1,9 +1,14 @@ /* -** $Id: lstrlib.c,v 1.210 2014/10/30 18:53:28 roberto Exp roberto $ +** $Id: lstrlib.c,v 1.211 2014/10/31 15:53:31 roberto Exp roberto $ ** Standard library for string operations and pattern-matching ** See Copyright Notice in lua.h */ +#define lstrlib_c +#define LUA_LIB + +#include "lprefix.h" + #include #include @@ -12,9 +17,6 @@ #include #include -#define lstrlib_c -#define LUA_LIB - #include "lua.h" #include "lauxlib.h" -- cgit v1.2.3-55-g6feb