1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/date: use timev.h in toplevel.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31216 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2011-03-30 13:48:32 +00:00
parent 3b20c21880
commit 3e2a0184d0
3 changed files with 3 additions and 21 deletions

2
ext/date/depend Normal file
View file

@ -0,0 +1,2 @@
date_core.o: $(top_srcdir)/timev.h
date_strftime.o: $(top_srcdir)/timev.h

View file

@ -1,2 +1,3 @@
require 'mkmf' require 'mkmf'
$INCFLAGS << " -I$(top_srcdir)"
create_makefile('date_core') create_makefile('date_core')

View file

@ -1,21 +0,0 @@
#ifndef RUBY_TIMEV_H
#define RUBY_TIMEV_H
struct vtm {
VALUE year; /* 2000 for example. Integer. */
int mon; /* 1..12 */
int mday; /* 1..31 */
int hour; /* 0..23 */
int min; /* 0..59 */
int sec; /* 0..60 */
VALUE subsecx; /* 0 <= subsecx < TIME_SCALE. possibly Rational. */
VALUE utc_offset; /* -3600 as -01:00 for example. possibly Rational. */
int wday; /* 0:Sunday, 1:Monday, ..., 6:Saturday */
int yday; /* 1..366 */
int isdst; /* 0:StandardTime 1:DayLightSavingTime */
const char *zone; /* "JST", "EST", "EDT", etc. */
};
#define TIME_SCALE 1000000000
#endif