xref: /386bsd/usr/src/usr.sbin/pppd/callout.h (revision a2142627)
1 /* Note:  This is a copy of /usr/include/sys/callout.h with the c_func */
2 /* member of struct callout changed from a pointer to a function of type int*/
3 /* to a pointer to a function of type void (generic pointer) as per */
4 /* ANSI C */
5 
6 /* $Id: callout.h,v 1.1 1993/11/11 03:54:25 paulus Exp $ */
7 
8 #ifndef _ppp_callout_h
9 #define _ppp_callout_h
10 
11 struct	callout {
12 	int	c_time;		/* incremental time */
13 	caddr_t	c_arg;		/* argument to routine */
14 	void	(*c_func)();	/* routine (changed to void (*)() */
15 	struct	callout *c_next;
16 };
17 
18 #endif /*!_ppp_callout_h*/
19