/* hackercorp - hackercore assert file for Amiga
 * kel 12/87 v1.0
 */

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