aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-02-11 13:31:50 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-02-11 13:31:50 -0200
commit7285fa393ba4ef62e33f490cd23fc8aba2b7b6a4 (patch)
tree68102b7ed2c69aa082e93e714153754da07ddf50
parent5085f09ce55fad35b24ff0ffa28b26eeb87d1c01 (diff)
downloadlua-7285fa393ba4ef62e33f490cd23fc8aba2b7b6a4.tar.gz
lua-7285fa393ba4ef62e33f490cd23fc8aba2b7b6a4.tar.bz2
lua-7285fa393ba4ef62e33f490cd23fc8aba2b7b6a4.zip
use C names for C types
-rw-r--r--liolib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/liolib.c b/liolib.c
index f03bfab4..9bbbe61b 100644
--- a/liolib.c
+++ b/liolib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: liolib.c,v 2.30 2003/01/17 15:27:28 roberto Exp roberto $ 2** $Id: liolib.c,v 2.31 2003/02/11 15:24:52 roberto Exp roberto $
3** Standard I/O (and system) library 3** Standard I/O (and system) library
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -40,7 +40,7 @@
40#endif 40#endif
41 41
42 42
43#define FILEHANDLE "FileHandle" 43#define FILEHANDLE "FILE*"
44 44
45#define IO_INPUT "_input" 45#define IO_INPUT "_input"
46#define IO_OUTPUT "_output" 46#define IO_OUTPUT "_output"