Runge-Kutta-Simulation/AppleX/INCLUDE/ASSERT.H
2015-02-11 19:34:08 +01:00

9 lines
203 B
C

#ifndef NDEBUG
#ifndef stderr
#include <stdio.h>
#endif
#define assert(x) if (!(x)) {fprintf(stderr,"Assertion failed: x, file %s, line %d\n",__FILE__,__LINE__); exit(1);}
#else
#define assert(x)
#endif