aboutsummaryrefslogtreecommitdiff
path: root/liolib.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-08-26 14:36:32 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-08-26 14:36:32 -0300
commit3390f9a35ac66d01c7bb0114083a4cb384783ff5 (patch)
treeb1726d230beac862c99b0b1f2361484b2cf7ad3b /liolib.c
parent9273fbd131eb0be7d4e7ca4f44345b41f8a557cf (diff)
downloadlua-3390f9a35ac66d01c7bb0114083a4cb384783ff5.tar.gz
lua-3390f9a35ac66d01c7bb0114083a4cb384783ff5.tar.bz2
lua-3390f9a35ac66d01c7bb0114083a4cb384783ff5.zip
detail
Diffstat (limited to 'liolib.c')
-rw-r--r--liolib.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/liolib.c b/liolib.c
index ceee5371..e8328fdc 100644
--- a/liolib.c
+++ b/liolib.c
@@ -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
460static const luaL_reg iolib[] = { 460static 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
476static const luaL_reg flib[] = { 476static 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},