lua

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

commit 7285fa393ba4ef62e33f490cd23fc8aba2b7b6a4
parent 5085f09ce55fad35b24ff0ffa28b26eeb87d1c01
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Tue, 11 Feb 2003 13:31:28 -0200

use C names for C types

Diffstat:
Mliolib.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/liolib.c b/liolib.c @@ -1,5 +1,5 @@ /* -** $Id: liolib.c,v 2.30 2003/01/17 15:27:28 roberto Exp roberto $ +** $Id: liolib.c,v 2.31 2003/02/11 15:24:52 roberto Exp roberto $ ** Standard I/O (and system) library ** See Copyright Notice in lua.h */ @@ -40,7 +40,7 @@ #endif -#define FILEHANDLE "FileHandle" +#define FILEHANDLE "FILE*" #define IO_INPUT "_input" #define IO_OUTPUT "_output"