xref: /original-bsd/usr.bin/pascal/libpc/ASRT.c (revision 6c57d260)
1 /* Copyright (c) 1979 Regents of the University of California */
2 
3 static char sccsid[] = "@(#)ASRT.c 1.1 10/30/80";
4 
5 #include "h01errs.h"
6 
7 ASRT(cond, stmt)
8 
9 	short	cond;
10 	char	*stmt;
11 {
12 	if (cond)
13 		return;
14 	ERROR(EASRT, stmt);
15 }
16