Improve the process for GNU tools
[minix3.git] / minix / drivers / power / tps65950 / rtc.h
blobcb64aeaba3a1725ed9879a48389ecb28d9b0256c
1 #ifndef __RTC_H
2 #define __RTC_H
4 #include <time.h>
6 int rtc_init(void);
7 int rtc_get_time(struct tm *t, int flags); /* read the hardware clock into t */
8 int rtc_set_time(struct tm *t, int flags); /* set the hardware clock to t */
9 int rtc_exit(void);
11 #endif /* __RTC_H */