home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d3xx / d359 / dice.lha / DICE / DICE.lzh / include / lib / atexit.h next >
C/C++ Source or Header  |  1990-03-10  |  113b  |  9 lines

  1.  
  2. typedef struct AtExit {
  3.     struct  AtExit *Next;
  4.     void (*Func)(void);
  5. } AtExit;
  6.  
  7. extern AtExit *_ExitBase;
  8.  
  9.