Commented out the ld -x -r lines and put NOPIC wrappers around the
[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
6#ifndef _ppp_callout_h
7#define _ppp_callout_h
8
9struct callout {
10 int c_time; /* incremental time */
11 caddr_t c_arg; /* argument to routine */
12 void (*c_func)(); /* routine (changed to void (*)() */
13 struct callout *c_next;
14};
15
16#endif /*!_ppp_callout_h*/