xv6-riscv-kernel/date.h

8 lines
102 B
C

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