import v0.1
[oweals/mountd.git] / include / timer.h
1 #ifndef _TIMER_H__
2 #define _TIMER_H__
3
4 typedef void (*timercb_t)(void);
5
6 void timer_init(void);
7 void timer_add(timercb_t timercb, int timeout);
8
9 #endif