diff options
author | Ian Moffett <ian@osmora.org> | 2025-06-21 15:09:27 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-06-21 15:09:27 -0400 |
commit | d9bbf72b02709a4afdbb53b2b19f00c8308b0b27 (patch) | |
tree | ccd213dd0d4c7b88a8df016565c2e360b9d92607 /sys/include | |
parent | 44161afdb82c792be739fa2e5fb0d5c6394634d7 (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.h | 3 |
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; |