home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / unix / unixlib36d / src / c / atexit < prev    next >
Text File  |  1994-03-08  |  342b  |  20 lines

  1. #ifdef __STDC__
  2. static char sccs_id[] = "@(#) atexit.c 2.1 " __DATE__ " HJR";
  3. #else
  4. static char sccs_id[] = "@(#) atexit.c 2.1 26/9/90 HJR";
  5. #endif
  6.  
  7. /* atexit.c (c) Copyright 1990 H.Rogers */
  8.  
  9. #include <stdlib.h>
  10.  
  11. int
  12. atexit (register void (*f) (void))
  13. {
  14.   if (__axcnt >= __MAX_AXCNT)
  15.     return (-1);
  16.  
  17.   __ax[__axcnt++] = f;
  18.   return (0);
  19. }
  20.