Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_Exit.c « mingwex « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 38f7e182e390f4d4ff7f934b461c6553350fc992 (plain)
1
2
3
#include <stdlib.h>
void _Exit(int status)
	{  _exit(status); }