mirror of https://github.com/flysand7/ciabatta.git
10 lines
101 B
C
10 lines
101 B
C
|
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
#include "win.h"
|
||
|
|
||
|
_Noreturn void _os_exit(int code)
|
||
|
{
|
||
|
ExitProcess(code);
|
||
|
}
|