home *** CD-ROM | disk | FTP | other *** search
/ Super Net 1 / SUPERNET_1.iso / PC / OTROS / SUN / PPP / SUNOS_OL / PPPD_1_0.TAR / callout.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-10-24  |  494 b   |  17 lines

  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.  
  9. struct    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*/
  17.