libc/winsup/mingw/mingwex/_Exit.c

4 lines
64 B
C

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