diff --git a/Tester/Test.cpp b/Tester/Test.cpp index f6babcb..9ed5ef9 100644 --- a/Tester/Test.cpp +++ b/Tester/Test.cpp @@ -24,8 +24,7 @@ int main() { if (goodTests == totalTests) printf("All %u tests succeeded." ENDL, totalTests); else printf("ERROR: Only %u/%u tests succeeded. %u tests failed." ENDL, goodTests, totalTests, totalTests - goodTests); -#if defined _WIN32 - system("pause"); -#endif // _WIN32 + puts("Press any key to continue..."); + fgetc(stdin); return 0; } \ No newline at end of file