aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-02-21 16:30:06 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-02-21 16:30:06 -0200
commit7c2fb15becd0486152a06a2759f053654273c7c2 (patch)
tree22f6346bcc37d9a54d73e765967fdf371acdf70e
parent1f01998516ca5f702af3e3655f6c38bfc581aae3 (diff)
downloadlua-7c2fb15becd0486152a06a2759f053654273c7c2.tar.gz
lua-7c2fb15becd0486152a06a2759f053654273c7c2.tar.bz2
lua-7c2fb15becd0486152a06a2759f053654273c7c2.zip
need "string.h" to use "strchr".
-rw-r--r--ltests.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ltests.c b/ltests.c
index 3dca88b7..90480097 100644
--- a/ltests.c
+++ b/ltests.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltests.c,v 1.6 2000/01/24 20:11:26 roberto Exp roberto $ 2** $Id: ltests.c,v 1.7 2000/02/08 16:34:31 roberto Exp roberto $
3** Internal Module for Debugging of the Lua Implementation 3** Internal Module for Debugging of the Lua Implementation
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -7,6 +7,7 @@
7 7
8#include <ctype.h> 8#include <ctype.h>
9#include <stdlib.h> 9#include <stdlib.h>
10#include <string.h>
10 11
11#define LUA_REENTRANT 12#define LUA_REENTRANT
12 13