CSC-4730 / P5 / xv6 / date.h
date.h
Raw
struct rtcdate {
  uint second;
  uint minute;
  uint hour;
  uint day;
  uint month;
  uint year;
};