lua

A copy of the Lua development repository
Log | Files | Refs | README

commit 7c2fb15becd0486152a06a2759f053654273c7c2
parent 1f01998516ca5f702af3e3655f6c38bfc581aae3
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Mon, 21 Feb 2000 16:29:44 -0200

need "string.h" to use "strchr".

Diffstat:
Mltests.c | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/ltests.c b/ltests.c @@ -1,5 +1,5 @@ /* -** $Id: ltests.c,v 1.6 2000/01/24 20:11:26 roberto Exp roberto $ +** $Id: ltests.c,v 1.7 2000/02/08 16:34:31 roberto Exp roberto $ ** Internal Module for Debugging of the Lua Implementation ** See Copyright Notice in lua.h */ @@ -7,6 +7,7 @@ #include <ctype.h> #include <stdlib.h> +#include <string.h> #define LUA_REENTRANT