diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-01-21 16:38:39 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-01-21 16:38:39 -0200 |
commit | eec31aaca58eb4a92a00c28748e81ee773f51a88 (patch) | |
tree | ca60beb0d905140ffde8cf721a9a234be4c7f96d | |
parent | 595738f6fe5d1a5c55442a3096849d581a9f34a5 (diff) | |
download | lua-eec31aaca58eb4a92a00c28748e81ee773f51a88.tar.gz lua-eec31aaca58eb4a92a00c28748e81ee773f51a88.tar.bz2 lua-eec31aaca58eb4a92a00c28748e81ee773f51a88.zip |
<string.h> is needed because of "memcpy".
-rw-r--r-- | lparser.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,11 +1,12 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lparser.c,v 1.7 1998/12/28 13:44:54 roberto Exp $ | 2 | ** $Id: lparser.c,v 1.8 1999/01/15 11:38:33 roberto Exp roberto $ |
3 | ** LL(1) Parser and code generator for Lua | 3 | ** LL(1) Parser and code generator for Lua |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
6 | 6 | ||
7 | 7 | ||
8 | #include <stdio.h> | 8 | #include <stdio.h> |
9 | #include <string.h> | ||
9 | 10 | ||
10 | #include "lauxlib.h" | 11 | #include "lauxlib.h" |
11 | #include "ldo.h" | 12 | #include "ldo.h" |