diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-08-02 16:52:24 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-08-02 16:52:24 +0000 |
commit | dea71be279b0a49611d68db8a3ca998a00835da4 (patch) | |
tree | c42005937b9dc655b3f6b64663ea195e82e9419a | |
parent | 14b4bd59095fd553f780ae83aad2854b820090bf (diff) |
Formerly timer.h.~2~
-rw-r--r-- | pfinet/linux/timer.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/pfinet/linux/timer.h b/pfinet/linux/timer.h index e69de29b..f1a5e300 100644 --- a/pfinet/linux/timer.h +++ b/pfinet/linux/timer.h @@ -0,0 +1,16 @@ +#ifndef _HACK_TIMER_H_ +#define _HACK_TIMER_H_ + +struct timer_list +{ + struct timer_list *next, *prev; + u_long expires; + u_long data; + void (*function)(unsigned long); +}; + +void add_timer (struct timer_list *); +int del_timer (struct timer_list *); +void init_timer (struct timer_list *); + +#endif |