too much information...
[unix-history] / usr / src / usr.bin / pascal / libpc / ASRTS.c
CommitLineData
8feb780c
KM
1/* Copyright (c) 1982 Regents of the University of California */
2
3static char sccsid[] = "@(#)ASRTS.c 1.1 %G%";
4
5char EASRTS[] = "Assertion failed: %s\n";
6
7ASRTS(cond, stmt)
8 short cond;
9 char *stmt;
10{
11 if (cond)
12 return;
13 ERROR(EASRTS, stmt);
14 return;
15}