kern

diff src/rtc.h @ 41:928b0ebfff4d

merged the timer/rtc/etc from the misc branch
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 14 Jun 2011 01:19:07 +0300
parents 2c401f69128e
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/rtc.h	Tue Jun 14 01:19:07 2011 +0300
     1.3 @@ -0,0 +1,11 @@
     1.4 +#ifndef _RTC_H_
     1.5 +#define _RTC_H_
     1.6 +
     1.7 +#include <time.h>
     1.8 +
     1.9 +/* the time read from rtc during init */
    1.10 +time_t start_time;
    1.11 +
    1.12 +void init_rtc(void);
    1.13 +
    1.14 +#endif	/* _RTC_H_ */