aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1995-02-06 17:36:13 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1995-02-06 17:36:13 -0200
commitbb00cd66a76b2b6cc781238c6b36b56a9b48f80a (patch)
tree7f99c3bf9a2d8b7e9e93b8844931c6be2df36e0e
parent7c342c488e8325af6a5f5a466df6dcbf3b563260 (diff)
downloadlua-bb00cd66a76b2b6cc781238c6b36b56a9b48f80a.tar.gz
lua-bb00cd66a76b2b6cc781238c6b36b56a9b48f80a.tar.bz2
lua-bb00cd66a76b2b6cc781238c6b36b56a9b48f80a.zip
function "stat" needs "sys/types.h"
-rw-r--r--iolib.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/iolib.c b/iolib.c
index b322c1f3..853ba25e 100644
--- a/iolib.c
+++ b/iolib.c
@@ -3,10 +3,11 @@
3** Input/output library to LUA 3** Input/output library to LUA
4*/ 4*/
5 5
6char *rcs_iolib="$Id: iolib.c,v 1.19 1995/01/03 13:14:13 celes Exp roberto $"; 6char *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>