mirror of
https://github.com/rigreco/Runge-Kutta-Simulation.git
synced 2024-12-28 12:32:57 +00:00
9 lines
203 B
C
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
|