0852cde15226423231054e962a9f9160cabf847b
[pub/USBasp.git] / Projects / Webserver / Lib / uip / clock.h
1 #ifndef __CLOCK_ARCH_H__
2 #define __CLOCK_ARCH_H__
3
4 #include <stdint.h>
5
6 typedef uint16_t clock_time_t;
7 #define CLOCK_SECOND 100
8 void clock_init(void);
9 clock_time_t clock_time(void);
10
11 #endif /* __CLOCK_ARCH_H__ */