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();
|
|
|
|
}
|