aboutsummaryrefslogtreecommitdiff
path: root/lstrlib.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-11-02 17:19:04 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-11-02 17:19:04 -0200
commit28fdbcf393c6c709a21a29f47cfa4c6ed4031ae9 (patch)
treeeaac6c45a621d7f0176ce8f57df3cca1ca8d30f6 /lstrlib.c
parentc25072a246eddff711ebec8e4acce9593bc5ff70 (diff)
downloadlua-28fdbcf393c6c709a21a29f47cfa4c6ed4031ae9.tar.gz
lua-28fdbcf393c6c709a21a29f47cfa4c6ed4031ae9.tar.bz2
lua-28fdbcf393c6c709a21a29f47cfa4c6ed4031ae9.zip
added include for 'lprefix.h', for stuff that must be added before
any other header file
Diffstat (limited to 'lstrlib.c')
-rw-r--r--lstrlib.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/lstrlib.c b/lstrlib.c
index caac826d..99dbee06 100644
--- a/lstrlib.c
+++ b/lstrlib.c
@@ -1,9 +1,14 @@
1/* 1/*
2** $Id: lstrlib.c,v 1.210 2014/10/30 18:53:28 roberto Exp roberto $ 2** $Id: lstrlib.c,v 1.211 2014/10/31 15:53:31 roberto Exp roberto $
3** Standard library for string operations and pattern-matching 3** Standard library for string operations and pattern-matching
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
6 6
7#define lstrlib_c
8#define LUA_LIB
9
10#include "lprefix.h"
11
7 12
8#include <ctype.h> 13#include <ctype.h>
9#include <limits.h> 14#include <limits.h>
@@ -12,9 +17,6 @@
12#include <stdlib.h> 17#include <stdlib.h>
13#include <string.h> 18#include <string.h>
14 19
15#define lstrlib_c
16#define LUA_LIB
17
18#include "lua.h" 20#include "lua.h"
19 21
20#include "lauxlib.h" 22#include "lauxlib.h"