/* $Id$ */ #include #define NEXITS 32 extern void (*__functab[NEXITS])(void); extern int __funccnt; int atexit(void (*func)(void)) { if (__funccnt >= NEXITS) return 1; __functab[__funccnt++] = func; return 0; }