summaryrefslogtreecommitdiff
path: root/sys/include
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-06-21 15:09:27 -0400
committerIan Moffett <ian@osmora.org>2025-06-21 15:09:27 -0400
commitd9bbf72b02709a4afdbb53b2b19f00c8308b0b27 (patch)
treeccd213dd0d4c7b88a8df016565c2e360b9d92607 /sys/include
parent44161afdb82c792be739fa2e5fb0d5c6394634d7 (diff)
kernel/amd64: mc1468xx: Add year, month and day
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include')
-rw-r--r--sys/include/sys/time.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/include/sys/time.h b/sys/include/sys/time.h
index 8563fc7..ce66885 100644
--- a/sys/include/sys/time.h
+++ b/sys/include/sys/time.h
@@ -46,6 +46,9 @@ struct timespec {
};
struct date {
+ uint16_t year;
+ uint8_t month;
+ uint8_t day;
uint8_t sec;
uint8_t min;
uint8_t hour;