ciabatta/code/entry_windows.c

11 lines
136 B
C
Raw Normal View History

#include <_platform.h>
#include <locale.h>
2022-06-02 05:18:26 +00:00
extern int main();
int mainCRTStartup()
{
2022-06-02 13:08:59 +00:00
setlocale(LC_ALL, "C");
2022-06-02 05:18:26 +00:00
return main();
}