From dea71be279b0a49611d68db8a3ca998a00835da4 Mon Sep 17 00:00:00 2001 From: "Michael I. Bushnell" Date: Wed, 2 Aug 1995 16:52:24 +0000 Subject: Formerly timer.h.~2~ --- pfinet/linux/timer.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'pfinet') 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 -- cgit v1.2.3