From e289f09d5abab0a840e4aed5be1f39d32949bdbc Mon Sep 17 00:00:00 2001 From: JustinAJ Date: Fri, 13 Jun 2014 00:37:47 -0400 Subject: [PATCH] Removed system-specific code. --- Tester/Test.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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