add machine specific macros for extracting inline data to support CCI (tahoe)
[unix-history] / usr / src / usr.bin / pascal / libpc / ASRT.c
CommitLineData
c20eaf69
KM
1/* Copyright (c) 1979 Regents of the University of California */
2
1198f08c 3static char sccsid[] = "@(#)ASRT.c 1.3 %G%";
c20eaf69 4
1198f08c 5char EASRT[] = "Assertion failed\n";
c20eaf69 6
1198f08c 7ASRT(cond)
c20eaf69 8 short cond;
c20eaf69
KM
9{
10 if (cond)
11 return;
1198f08c
KM
12 ERROR(EASRT, 0);
13 return;
c20eaf69 14}