shithub: scc

ref: a799fd84aabd2df4789da1fe498e2f7ced1aa141
dir: /src/libc/stdlib/exit.c/

View raw version
#include <stdlib.h>
#undef exit

void (*_exitf[_ATEXIT_MAX])(void);
unsigned _exitn;

void
exit(int status)
{
	while (_exitn > 0)
		(*_exitf[--_exitn])();
	_Exit(status);
}