ciabatta/code/os/win/win_env.c

10 lines
101 B
C

#include <stdlib.h>
#include "win.h"
_Noreturn void _os_exit(int code)
{
ExitProcess(code);
}