diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2010-03-13 12:55:01 -0300 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2010-03-13 12:55:01 -0300 |
| commit | 63a2b62468d2aabb1086a8c88d32ff96c658c96b (patch) | |
| tree | 3e2c2d3a9c8c4d70ca6a370a745ab8c9f0f378d4 | |
| parent | 489253d7530e372da8807f1ad083928c3545f772 (diff) | |
| download | lua-63a2b62468d2aabb1086a8c88d32ff96c658c96b.tar.gz lua-63a2b62468d2aabb1086a8c88d32ff96c658c96b.tar.bz2 lua-63a2b62468d2aabb1086a8c88d32ff96c658c96b.zip | |
must include 'string.h' because a macro uses 'strlen'
| -rw-r--r-- | lstring.h | 3 |
1 files changed, 2 insertions, 1 deletions
| @@ -1,5 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** $Id: lstring.h,v 1.42 2005/02/23 17:30:22 roberto Exp roberto $ | 2 | ** $Id: lstring.h,v 1.43 2005/04/25 19:24:10 roberto Exp roberto $ |
| 3 | ** String table (keep all strings handled by Lua) | 3 | ** String table (keep all strings handled by Lua) |
| 4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
| 5 | */ | 5 | */ |
| @@ -7,6 +7,7 @@ | |||
| 7 | #ifndef lstring_h | 7 | #ifndef lstring_h |
| 8 | #define lstring_h | 8 | #define lstring_h |
| 9 | 9 | ||
| 10 | #include <string.h> | ||
| 10 | 11 | ||
| 11 | #include "lgc.h" | 12 | #include "lgc.h" |
| 12 | #include "lobject.h" | 13 | #include "lobject.h" |
