Pristine Ack-5.5
[Ack-5.5.git] / util / led / assert.h
1 /*
2  * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
3  * See the copyright notice in the ACK home directory, in the file "Copyright".
4  */
5 /* $Id: assert.h,v 3.3 1994/06/24 10:34:26 ceriel Exp $ */
6
7 #ifndef lint
8 #ifdef NASSERT
9
10 #define assert(ex)
11
12 #else /* NASSERT */
13
14 #define assert(ex) \
15 {if (!(ex)) fatal("Assertion failed: file %s, line %d", __FILE__, __LINE__);}
16
17 #endif /* NASSERT */
18 #else /* lint */
19
20 #define assert(ex)
21
22 #endif /* lint */