aboutsummaryrefslogtreecommitdiff
path: root/loslib.c
diff options
context:
space:
mode:
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