ref: e6b32a880a72d73e0041926fee6c8fe9d0ff6ce2
dir: /sys/src/ape/lib/ap/stdio/atexit.c/
#include <unistd.h>
#define NONEXIT 34
extern int (*_atexitfns[NONEXIT])(void);
int
atexit(int (*f)(void))
{
int i;
for(i=0; i<NONEXIT; i++)
if(!_atexitfns[i]){
_atexitfns[i] = f;
return(0);
}
return(1);
}