aboutsummaryrefslogblamecommitdiffstats
path: root/test.h
blob: e4e08f2a23d608a7ad129df6f86ef9c4566314d2 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                                                     
/* See LICENSE file for copyright and license details. */


#define assert(EXPR)\
	do {\
		if (EXPR)\
			break;\
		fprintf(stderr, "Failed at %s:%i: %s\n", __FILE__, __LINE__, #EXPR);\
		exit(1);\
	} while (0)