home *** CD-ROM | disk | FTP | other *** search
/ Monster Disc 2: The Best of 1992 / MONSTER2.ISO / prog / djgpp / djdev107.a01 / INCLUDE / ATEXIT.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-03-22  |  153 b   |  10 lines

  1. /* Copyright 1992 DJ Delorie */
  2.  
  3. struct atexit {
  4.   struct atexit *next;
  5.   void (*function)(int);
  6.   int arg;
  7. };
  8.  
  9. extern struct atexit *__atexit;
  10.