xref: /original-bsd/usr.bin/pascal/libpc/ASRT.c (revision 18f6d767)
1 /* Copyright (c) 1979 Regents of the University of California */
2 
3 static char sccsid[] = "@(#)ASRT.c 1.3 11/12/82";
4 
5 char EASRT[] = "Assertion failed\n";
6 
7 ASRT(cond)
8 	short	cond;
9 {
10 	if (cond)
11 		return;
12 	ERROR(EASRT, 0);
13 	return;
14 }
15