ciabatta/code/entry_windows.c

12 lines
135 B
C
Raw Normal View History

2022-06-02 05:18:26 +00:00
#include<_platform.h>
2022-06-02 13:08:59 +00:00
#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();
}