ref: 916a4ec745ac099b0747c94c0def75c54e6a005f
dir: /libc/src/exit.c/
/* See LICENSE file for copyright and license details. */ #include <stdlib.h> #undef exit void (*_exitf[_ATEXIT_MAX])(void); unsigned _exitn; void exit(int status) { while (_exitn > 0) (*_exitf[--exitn])(); _Exit(status); }