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

check.h « include « testsuite « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: df7f0cfa2e2d3c67e0eff67fcc36b01916bccaa3 (plain)
1
2
3
4
5
6
7
#define CHECK(a) { \
  if (!(a)) \
    { \
      printf ("Failed " #a " in <%s> at line %d\n", __FILE__, __LINE__); \
      abort(); \
    } \
}