diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-08-26 14:36:32 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-08-26 14:36:32 -0300 |
commit | 3390f9a35ac66d01c7bb0114083a4cb384783ff5 (patch) | |
tree | b1726d230beac862c99b0b1f2361484b2cf7ad3b /liolib.c | |
parent | 9273fbd131eb0be7d4e7ca4f44345b41f8a557cf (diff) | |
download | lua-3390f9a35ac66d01c7bb0114083a4cb384783ff5.tar.gz lua-3390f9a35ac66d01c7bb0114083a4cb384783ff5.tar.bz2 lua-3390f9a35ac66d01c7bb0114083a4cb384783ff5.zip |
detail
Diffstat (limited to 'liolib.c')
-rw-r--r-- | liolib.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: liolib.c,v 2.65 2005/08/15 14:12:32 roberto Exp roberto $ | 2 | ** $Id: liolib.c,v 2.66 2005/08/17 19:05:04 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 | */ |
@@ -457,7 +457,7 @@ static int f_flush (lua_State *L) { | |||
457 | } | 457 | } |
458 | 458 | ||
459 | 459 | ||
460 | static const luaL_reg iolib[] = { | 460 | static const luaL_Reg iolib[] = { |
461 | {"close", io_close}, | 461 | {"close", io_close}, |
462 | {"flush", io_flush}, | 462 | {"flush", io_flush}, |
463 | {"input", io_input}, | 463 | {"input", io_input}, |
@@ -473,7 +473,7 @@ static const luaL_reg iolib[] = { | |||
473 | }; | 473 | }; |
474 | 474 | ||
475 | 475 | ||
476 | static const luaL_reg flib[] = { | 476 | static const luaL_Reg flib[] = { |
477 | {"close", io_close}, | 477 | {"close", io_close}, |
478 | {"flush", f_flush}, | 478 | {"flush", f_flush}, |
479 | {"lines", f_lines}, | 479 | {"lines", f_lines}, |