Added the code for the Gateway Ethernet card into if_ed.c. The whole code
[unix-history] / libexec / pppd / callout.h
CommitLineData
2a905848
RG
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
f381ea37
JH
6/* $Id: callout.h,v 1.1 1993/11/11 03:54:25 paulus Exp $ */
7
2a905848
RG
8#ifndef _ppp_callout_h
9#define _ppp_callout_h
10
11struct 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*/