xref: /original-bsd/usr.bin/pascal/libpc/ASRTS.c (revision 1403a0cd)
1 /* Copyright (c) 1982 Regents of the University of California */
2 
3 static char sccsid[] = "@(#)ASRTS.c 1.1 11/12/82";
4 
5 char EASRTS[] = "Assertion failed: %s\n";
6 
7 ASRTS(cond, stmt)
8 	short	cond;
9 	char	*stmt;
10 {
11 	if (cond)
12 		return;
13 	ERROR(EASRTS, stmt);
14 	return;
15 }
16