summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCody Cutler <[email protected]>2014-09-12 18:41:38 -0400
committerCody Cutler <[email protected]>2014-09-12 18:41:38 -0400
commite7d77aad2b2beb56a44ac5a4052fd748f0e81d9d (patch)
tree0a5dbf28f30d690a375708d834fe842669c26caa
parentaae4e7490fbb61de13f61d90092b177eeb258216 (diff)
downloadxv6-labs-e7d77aad2b2beb56a44ac5a4052fd748f0e81d9d.tar.gz
xv6-labs-e7d77aad2b2beb56a44ac5a4052fd748f0e81d9d.tar.bz2
xv6-labs-e7d77aad2b2beb56a44ac5a4052fd748f0e81d9d.zip
whoops. forgot date.h
-rw-r--r--date.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/date.h b/date.h
new file mode 100644
index 0000000..dd8f4b0
--- /dev/null
+++ b/date.h
@@ -0,0 +1,8 @@
+struct rtcdate {
+ uint second;
+ uint minute;
+ uint hour;
+ uint day;
+ uint month;
+ uint year;
+};