lua

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

commit 63a2b62468d2aabb1086a8c88d32ff96c658c96b
parent 489253d7530e372da8807f1ad083928c3545f772
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Sat, 13 Mar 2010 12:54:37 -0300

must include 'string.h' because a macro uses 'strlen'

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

diff --git a/lstring.h b/lstring.h @@ -1,5 +1,5 @@ /* -** $Id: lstring.h,v 1.42 2005/02/23 17:30:22 roberto Exp roberto $ +** $Id: lstring.h,v 1.43 2005/04/25 19:24:10 roberto Exp roberto $ ** String table (keep all strings handled by Lua) ** See Copyright Notice in lua.h */ @@ -7,6 +7,7 @@ #ifndef lstring_h #define lstring_h +#include <string.h> #include "lgc.h" #include "lobject.h"