written by Kirk McKusick; add Berkeley specific copyright notice
[unix-history] / usr / src / usr.bin / pascal / libpc / ASRT.c
CommitLineData
0d78ca85
KB
1/*-
2 * Copyright (c) 1979 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * %sccs.include.redist.c%
6 */
c20eaf69 7
0d78ca85
KB
8#ifndef lint
9static char sccsid[] = "@(#)ASRT.c 1.4 (Berkeley) %G%";
10#endif /* not lint */
c20eaf69 11
1198f08c 12char EASRT[] = "Assertion failed\n";
c20eaf69 13
1198f08c 14ASRT(cond)
c20eaf69 15 short cond;
c20eaf69
KM
16{
17 if (cond)
18 return;
1198f08c
KM
19 ERROR(EASRT, 0);
20 return;
c20eaf69 21}