diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2011-11-14 14:55:35 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2011-11-14 14:55:35 -0200 |
commit | eb70f58279e7bd8581ecf58c763d8065a8e2bfb0 (patch) | |
tree | 8dd110cfda1827885107efc057641304bd36308f /liolib.c | |
parent | ef900f224c4afdc33e31ca39e95ae8d1ac9dfd3b (diff) | |
download | lua-eb70f58279e7bd8581ecf58c763d8065a8e2bfb0.tar.gz lua-eb70f58279e7bd8581ecf58c763d8065a8e2bfb0.tar.bz2 lua-eb70f58279e7bd8581ecf58c763d8065a8e2bfb0.zip |
'luaIO_Stream' -> 'luaL_Stream'
Diffstat (limited to 'liolib.c')
-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.105 2011/11/09 14:10:43 roberto Exp roberto $ | 2 | ** $Id: liolib.c,v 2.106 2011/11/11 19:59:17 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 | */ |
@@ -102,7 +102,7 @@ | |||
102 | #define IO_OUTPUT (IO_PREFIX "output") | 102 | #define IO_OUTPUT (IO_PREFIX "output") |
103 | 103 | ||
104 | 104 | ||
105 | typedef luaIO_Stream LStream; | 105 | typedef luaL_Stream LStream; |
106 | 106 | ||
107 | 107 | ||
108 | #define tolstream(L) ((LStream *)luaL_checkudata(L, 1, LUA_FILEHANDLE)) | 108 | #define tolstream(L) ((LStream *)luaL_checkudata(L, 1, LUA_FILEHANDLE)) |