freebsd-dev/usr.sbin/pppd/callout.h
1994-09-25 02:11:26 +00:00

19 lines
555 B
C

/* Note: This is a copy of /usr/include/sys/callout.h with the c_func */
/* member of struct callout changed from a pointer to a function of type int*/
/* to a pointer to a function of type void (generic pointer) as per */
/* ANSI C */
/* $Id: callout.h,v 1.1 1993/11/11 03:54:25 paulus Exp $ */
#ifndef _ppp_callout_h
#define _ppp_callout_h
struct callout {
int c_time; /* incremental time */
caddr_t c_arg; /* argument to routine */
void (*c_func)(); /* routine (changed to void (*)() */
struct callout *c_next;
};
#endif /*!_ppp_callout_h*/