diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1995-02-06 17:36:13 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1995-02-06 17:36:13 -0200 |
commit | bb00cd66a76b2b6cc781238c6b36b56a9b48f80a (patch) | |
tree | 7f99c3bf9a2d8b7e9e93b8844931c6be2df36e0e | |
parent | 7c342c488e8325af6a5f5a466df6dcbf3b563260 (diff) | |
download | lua-bb00cd66a76b2b6cc781238c6b36b56a9b48f80a.tar.gz lua-bb00cd66a76b2b6cc781238c6b36b56a9b48f80a.tar.bz2 lua-bb00cd66a76b2b6cc781238c6b36b56a9b48f80a.zip |
function "stat" needs "sys/types.h"
-rw-r--r-- | iolib.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -3,10 +3,11 @@ | |||
3 | ** Input/output library to LUA | 3 | ** Input/output library to LUA |
4 | */ | 4 | */ |
5 | 5 | ||
6 | char *rcs_iolib="$Id: iolib.c,v 1.19 1995/01/03 13:14:13 celes Exp roberto $"; | 6 | char *rcs_iolib="$Id: iolib.c,v 1.20 1995/02/02 18:54:58 roberto Exp roberto $"; |
7 | 7 | ||
8 | #include <stdio.h> | 8 | #include <stdio.h> |
9 | #include <ctype.h> | 9 | #include <ctype.h> |
10 | #include <sys/types.h> | ||
10 | #include <sys/stat.h> | 11 | #include <sys/stat.h> |
11 | #include <string.h> | 12 | #include <string.h> |
12 | #include <time.h> | 13 | #include <time.h> |