ref: 433b9cd26eb5d27977eb8cde6bb1c019606e0ffa
dir: /src/libc/stdlib/atexit.c/
#include <stdlib.h> #include <errno.h> #include "../libc.h" #undef atexit int atexit(void (*fun)(void)) { if (_exitn == _ATEXIT_MAX) { errno = ENOMEM; return -1; } _exitf[_exitn++] = fun; return 0; }