diff options
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.138 2014/10/31 15:54:06 roberto Exp roberto $ | 2 | ** $Id: liolib.c,v 2.139 2014/11/02 19:19: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 | */ |
@@ -59,7 +59,7 @@ | |||
59 | 59 | ||
60 | #else /* }{ */ | 60 | #else /* }{ */ |
61 | 61 | ||
62 | /* ANSI definitions */ | 62 | /* ISO C definitions */ |
63 | #define l_popen(L,c,m) \ | 63 | #define l_popen(L,c,m) \ |
64 | ((void)((void)c, m), \ | 64 | ((void)((void)c, m), \ |
65 | luaL_error(L, "'popen' not supported"), \ | 65 | luaL_error(L, "'popen' not supported"), \ |
@@ -114,7 +114,7 @@ | |||
114 | 114 | ||
115 | #else /* }{ */ | 115 | #else /* }{ */ |
116 | 116 | ||
117 | /* ANSI definitions */ | 117 | /* ISO C definitions */ |
118 | #define l_fseek(f,o,w) fseek(f,o,w) | 118 | #define l_fseek(f,o,w) fseek(f,o,w) |
119 | #define l_ftell(f) ftell(f) | 119 | #define l_ftell(f) ftell(f) |
120 | #define l_seeknum long | 120 | #define l_seeknum long |