From ebee33c230a10f26625ad6770ffe3442ca135aa0 Mon Sep 17 00:00:00 2001 From: ocean Date: Fri, 21 Oct 2005 06:33:00 +0000 Subject: * time.c: should use LONG_LONG instead of `long long'. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@9433 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'time.c') diff --git a/time.c b/time.c index e95beb25c..1fd601a00 100644 --- a/time.c +++ b/time.c @@ -1260,7 +1260,7 @@ typedef unsigned long unsigned_time_t; #elif SIZEOF_TIME_T == SIZEOF_INT typedef unsigned int unsigned_time_t; #elif SIZEOF_TIME_T == SIZEOF_LONG_LONG -typedef unsigned long long unsigned_time_t; +typedef unsigned LONG_LONG unsigned_time_t; #else # error cannot find integer type which size is same as time_t. #endif -- cgit