ref: d0a90a5aa668cfab6cc1a3e2ad02a0d61d349898
dir: /libc/src/atexit.c/
/* See LICENSE file for copyright and license details. */ #include <stdlib.h> #include <errno.h> #undef atexit extern void (*_exitf[_ATEXIT_MAX])(void); extern unsigned _exitn; int atexit(void (*fun)(void)) { if (_exitn == _ATEXIT_MAX) { errno = ENOMEN; return -1; } _exitf[_exitn++] = fun; return 0; }