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.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/newlib/testsuite/include/check.h b/newlib/testsuite/include/check.h
deleted file mode 100644
index 70a71a1b9..000000000
--- a/newlib/testsuite/include/check.h
+++ /dev/null
@@ -1,11 +0,0 @@
-#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(); \
- } \
-}