Work around MSVC 2003's inability to concatinate constants.

This commit is contained in:
n-a-c-h
2005-07-11 17:08:39 +00:00
parent 8de7657016
commit d41717a0ea

View File

@@ -263,7 +263,8 @@ ssize_t enhanced_atoi(const char *str)
system("gcc -o eatio.exe eatio.c -s"); system("gcc -o eatio.exe eatio.c -s");
#endif #endif
system("."SLASH_STR"eatio.exe"); //Older MSVCs too stupid to concatinate on their own
system((string(".")+string(SLASH_STR)+"eatio.exe").c_str());
remove("eatio.c"); remove("eatio.c");
remove("eatio.exe"); remove("eatio.exe");