shithub: scc

ref: f135e0f1a43183e0c25e9ed8dbbe294474c0fc2a
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);
}