newlib/winsup/mingw/mingwex/_Exit.c

4 lines
64 B
C
Raw Normal View History

#include <stdlib.h>
void _Exit(int status)
{ _exit(status); }