lua

A copy of the Lua development repository
Log | Files | Refs | README

commit bb00cd66a76b2b6cc781238c6b36b56a9b48f80a
parent 7c342c488e8325af6a5f5a466df6dcbf3b563260
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Mon,  6 Feb 1995 17:35:54 -0200

function "stat" needs "sys/types.h"

Diffstat:
Miolib.c | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/iolib.c b/iolib.c @@ -3,10 +3,11 @@ ** Input/output library to LUA */ -char *rcs_iolib="$Id: iolib.c,v 1.19 1995/01/03 13:14:13 celes Exp roberto $"; +char *rcs_iolib="$Id: iolib.c,v 1.20 1995/02/02 18:54:58 roberto Exp roberto $"; #include <stdio.h> #include <ctype.h> +#include <sys/types.h> #include <sys/stat.h> #include <string.h> #include <time.h>