Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/testsuite/include/check.h')
-rw-r--r--newlib/testsuite/include/check.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/newlib/testsuite/include/check.h b/newlib/testsuite/include/check.h
index 70a71a1b9..df7f0cfa2 100644
--- a/newlib/testsuite/include/check.h
+++ b/newlib/testsuite/include/check.h
@@ -1,11 +1,7 @@
-#include <stdio.h>
-#include <stdlib.h>
-
#define CHECK(a) { \
if (!(a)) \
{ \
printf ("Failed " #a " in <%s> at line %d\n", __FILE__, __LINE__); \
- fflush(stdout); \
abort(); \
} \
}