Files
pintos_22/tests/devices/src/devices/rtc.h

9 lines
96 B
C

#ifndef RTC_H
#define RTC_H
typedef unsigned long time_t;
time_t rtc_get_time (void);
#endif