summaryrefslogtreecommitdiff
path: root/ext/date
diff options
context:
space:
mode:
Diffstat (limited to 'ext/date')
-rw-r--r--ext/date/date_tmx.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/ext/date/date_tmx.h b/ext/date/date_tmx.h
new file mode 100644
index 0000000000..cdb5b0ddad
--- /dev/null
+++ b/ext/date/date_tmx.h
@@ -0,0 +1,19 @@
+struct tmx {
+ VALUE year;
+ int yday;
+ int mon;
+ int mday;
+ int hour;
+ int min;
+ int sec;
+ int wday;
+ VALUE offset;
+ const char *zone;
+ VALUE timev;
+};
+
+/*
+Local variables:
+c-file-style: "ruby"
+End:
+*/