xv6/date.h
2023-01-04 16:04:31 +00:00

9 lines
114 B
C

struct rtcdate {
uint second;
uint minute;
uint hour;
uint day;
uint month;
uint year;
};