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