summaryrefslogtreecommitdiffstats
path: root/time.c
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-07-27 09:14:38 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-07-27 09:14:38 +0000
commit69488912ecfcd7c9eb186496e560a4a7825ac6bb (patch)
treefb5341e8f67cc20717e18972d9cebaf8ebcf409a /time.c
parent827ebbef52bc064200a12e5cfdf6cf8c211cd98c (diff)
downloadruby-69488912ecfcd7c9eb186496e560a4a7825ac6bb.tar.gz
ruby-69488912ecfcd7c9eb186496e560a4a7825ac6bb.tar.xz
ruby-69488912ecfcd7c9eb186496e560a4a7825ac6bb.zip
* time.c: need to declare time_utc_offset.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10624 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'time.c')
-rw-r--r--time.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/time.c b/time.c
index e8c692438..9ff2c5763 100644
--- a/time.c
+++ b/time.c
@@ -21,6 +21,7 @@
#include <math.h>
VALUE rb_cTime;
+static VALUE time_utc_offset _((VALUE));
struct time_object {
struct timeval tv;