blob: 3f2c307701388ea08ead03168d6f7f9f467bb1f3 [file] [log] [blame]
adamdunkelsd311bf12004-07-04 20:17:37 +00001#ifndef __CLOCK_CONF_H__
2#define __CLOCK_CONF_H__
3
4typedef unsigned short clock_time_t;
5#define CLOCK_CONF_SECOND 8
6
7void clock_delay(unsigned int us2);
8
9void clock_wait(int ms10);
10
11void clock_set_seconds(unsigned long s);
12unsigned long clock_seconds(void);
13
14
15#endif /* __CLOCK_CONF_H__ */