From 700b778cbb6b718069504cdfe2240c9c01176835 Mon Sep 17 00:00:00 2001 From: naruse Date: Fri, 25 Mar 2011 20:29:53 +0000 Subject: time(3)'s argument and return value is time_t. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31182 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/date/date_strftime.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'ext/date') diff --git a/ext/date/date_strftime.c b/ext/date/date_strftime.c index 774d8acb8b..4774137fb8 100644 --- a/ext/date/date_strftime.c +++ b/ext/date/date_strftime.c @@ -1134,6 +1134,7 @@ How nicer it depends on a compiler, of course, but always a tiny bit. #ifndef NULL #include #endif +#include #include #include @@ -1191,8 +1192,6 @@ main(argc, argv) int argc; char **argv; { - long time(); - char *next; char string[MAXTIME]; @@ -1201,11 +1200,11 @@ char **argv; struct tm *tm; - long clock; + time_t clock; /* Call the function. */ - clock = time((long *) 0); + clock = time(NULL); tm = localtime(&clock); for (k = 0; next = array[k]; k++) { -- cgit v1.2.3