aboutsummaryrefslogtreecommitdiff
path: root/loslib.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-11-02 17:33:33 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-11-02 17:33:33 -0200
commite75c0148c387962f484f00701169a194b61a0429 (patch)
tree0dc68284b73553b8c7981ceef2aa955c4faefa5c /loslib.c
parent28fdbcf393c6c709a21a29f47cfa4c6ed4031ae9 (diff)
downloadlua-e75c0148c387962f484f00701169a194b61a0429.tar.gz
lua-e75c0148c387962f484f00701169a194b61a0429.tar.bz2
lua-e75c0148c387962f484f00701169a194b61a0429.zip
comments (references to "ANSI C" changed to "ISO C", which is the
international name
Diffstat (limited to 'loslib.c')
-rw-r--r--loslib.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/loslib.c b/loslib.c
index 98809da3..8a59b699 100644
--- a/loslib.c
+++ b/loslib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: loslib.c,v 1.50 2014/10/25 11:50:46 roberto Exp roberto $ 2** $Id: loslib.c,v 1.51 2014/11/02 19:19:04 roberto Exp roberto $
3** Standard Operating System library 3** Standard Operating System library
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -76,7 +76,7 @@
76 76
77#else /* }{ */ 77#else /* }{ */
78 78
79/* ANSI definitions */ 79/* ISO C definitions */
80#define LUA_TMPNAMBUFSIZE L_tmpnam 80#define LUA_TMPNAMBUFSIZE L_tmpnam
81#define lua_tmpnam(b,e) { e = (tmpnam(b) == NULL); } 81#define lua_tmpnam(b,e) { e = (tmpnam(b) == NULL); }
82 82
@@ -99,7 +99,7 @@
99 99
100#else /* }{ */ 100#else /* }{ */
101 101
102/* ANSI definitions */ 102/* ISO C definitions */
103#define l_gmtime(t,r) ((void)r, gmtime(t)) 103#define l_gmtime(t,r) ((void)r, gmtime(t))
104#define l_localtime(t,r) ((void)r, localtime(t)) 104#define l_localtime(t,r) ((void)r, localtime(t))
105 105