Files
pintos_22/src/devices/rtc.h
2024-10-01 23:37:39 +01:00

9 lines
96 B
C

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