CS318 - Pintos
Pintos source browser for JHU CS318 course
rtc.h
Go to the documentation of this file.
1 #ifndef RTC_H
2 #define RTC_H
3 
4 typedef unsigned long time_t;
5 
6 time_t rtc_get_time (void);
7 
8 #endif
time_t
unsigned long time_t
Definition: rtc.h:4
rtc_get_time
time_t rtc_get_time(void)
Returns number of seconds since Unix epoch of January 1,.
Definition: rtc.c:43