diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1995-02-06 17:34:03 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1995-02-06 17:34:03 -0200 |
commit | b36cd823b1191d22f42edb70fdf846c78f2c956e (patch) | |
tree | 17a572fe77e403f4b4c1366da45c8191903fdf4b | |
parent | cda444d7f490b8d3bd5ae19323d09e236d2419d3 (diff) | |
download | lua-b36cd823b1191d22f42edb70fdf846c78f2c956e.tar.gz lua-b36cd823b1191d22f42edb70fdf846c78f2c956e.tar.bz2 lua-b36cd823b1191d22f42edb70fdf846c78f2c956e.zip |
header "string.h" was missing (gcc does not warn that)
-rw-r--r-- | fallback.c | 3 | ||||
-rw-r--r-- | hash.c | 4 | ||||
-rw-r--r-- | luamem.c | 3 |
3 files changed, 7 insertions, 3 deletions
@@ -3,9 +3,10 @@ | |||
3 | ** TecCGraf - PUC-Rio | 3 | ** TecCGraf - PUC-Rio |
4 | */ | 4 | */ |
5 | 5 | ||
6 | char *rcs_fallback="$Id: fallback.c,v 1.9 1994/11/21 18:22:58 roberto Stab roberto $"; | 6 | char *rcs_fallback="$Id: fallback.c,v 1.10 1994/12/20 21:20:36 roberto Exp $"; |
7 | 7 | ||
8 | #include <stdio.h> | 8 | #include <stdio.h> |
9 | #include <string.h> | ||
9 | 10 | ||
10 | #include "mem.h" | 11 | #include "mem.h" |
11 | #include "fallback.h" | 12 | #include "fallback.h" |
@@ -3,7 +3,9 @@ | |||
3 | ** hash manager for lua | 3 | ** hash manager for lua |
4 | */ | 4 | */ |
5 | 5 | ||
6 | char *rcs_hash="$Id: hash.c,v 2.22 1994/12/20 21:20:36 roberto Exp roberto $"; | 6 | char *rcs_hash="$Id: hash.c,v 2.23 1995/01/12 14:19:04 roberto Exp $"; |
7 | |||
8 | #include <string.h> | ||
7 | 9 | ||
8 | #include "mem.h" | 10 | #include "mem.h" |
9 | #include "opcode.h" | 11 | #include "opcode.h" |
@@ -3,9 +3,10 @@ | |||
3 | ** TecCGraf - PUC-Rio | 3 | ** TecCGraf - PUC-Rio |
4 | */ | 4 | */ |
5 | 5 | ||
6 | char *rcs_mem = "$Id: mem.c,v 1.3 1994/12/20 21:20:36 roberto Exp roberto $"; | 6 | char *rcs_mem = "$Id: mem.c,v 1.4 1995/01/13 22:11:12 roberto Exp roberto $"; |
7 | 7 | ||
8 | #include <stdlib.h> | 8 | #include <stdlib.h> |
9 | #include <string.h> | ||
9 | 10 | ||
10 | #include "mem.h" | 11 | #include "mem.h" |
11 | #include "lua.h" | 12 | #include "lua.h" |