From e75c0148c387962f484f00701169a194b61a0429 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Sun, 2 Nov 2014 17:33:33 -0200 Subject: comments (references to "ANSI C" changed to "ISO C", which is the international name --- loslib.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'loslib.c') diff --git a/loslib.c b/loslib.c index 98809da3..8a59b699 100644 --- a/loslib.c +++ b/loslib.c @@ -1,5 +1,5 @@ /* -** $Id: loslib.c,v 1.50 2014/10/25 11:50:46 roberto Exp roberto $ +** $Id: loslib.c,v 1.51 2014/11/02 19:19:04 roberto Exp roberto $ ** Standard Operating System library ** See Copyright Notice in lua.h */ @@ -76,7 +76,7 @@ #else /* }{ */ -/* ANSI definitions */ +/* ISO C definitions */ #define LUA_TMPNAMBUFSIZE L_tmpnam #define lua_tmpnam(b,e) { e = (tmpnam(b) == NULL); } @@ -99,7 +99,7 @@ #else /* }{ */ -/* ANSI definitions */ +/* ISO C definitions */ #define l_gmtime(t,r) ((void)r, gmtime(t)) #define l_localtime(t,r) ((void)r, localtime(t)) -- cgit v1.2.3-55-g6feb