home *** CD-ROM | disk | FTP | other *** search
- #ifdef __STDC__
- static char sccs_id[] = "@(#) atexit.c 2.1 " __DATE__ " HJR";
- #else
- static char sccs_id[] = "@(#) atexit.c 2.1 26/9/90 HJR";
- #endif
-
- /* atexit.c (c) Copyright 1990 H.Rogers */
-
- #include <stdlib.h>
-
- int
- atexit (register void (*f) (void))
- {
- if (__axcnt >= __MAX_AXCNT)
- return (-1);
-
- __ax[__axcnt++] = f;
- return (0);
- }
-