diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2003-02-11 13:31:50 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2003-02-11 13:31:50 -0200 |
commit | 7285fa393ba4ef62e33f490cd23fc8aba2b7b6a4 (patch) | |
tree | 68102b7ed2c69aa082e93e714153754da07ddf50 | |
parent | 5085f09ce55fad35b24ff0ffa28b26eeb87d1c01 (diff) | |
download | lua-7285fa393ba4ef62e33f490cd23fc8aba2b7b6a4.tar.gz lua-7285fa393ba4ef62e33f490cd23fc8aba2b7b6a4.tar.bz2 lua-7285fa393ba4ef62e33f490cd23fc8aba2b7b6a4.zip |
use C names for C types
-rw-r--r-- | liolib.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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" |