date and time created 80/10/30 00:32:49 by mckusick
authorKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Thu, 30 Oct 1980 16:32:49 +0000 (08:32 -0800)
committerKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Thu, 30 Oct 1980 16:32:49 +0000 (08:32 -0800)
SCCS-vsn: usr.bin/pascal/libpc/ASRT.c 1.1

usr/src/usr.bin/pascal/libpc/ASRT.c [new file with mode: 0644]

diff --git a/usr/src/usr.bin/pascal/libpc/ASRT.c b/usr/src/usr.bin/pascal/libpc/ASRT.c
new file mode 100644 (file)
index 0000000..fdb9bd1
--- /dev/null
@@ -0,0 +1,15 @@
+/* Copyright (c) 1979 Regents of the University of California */
+
+static char sccsid[] = "@(#)ASRT.c 1.1 %G%";
+
+#include "h01errs.h"
+
+ASRT(cond, stmt)
+
+       short   cond;
+       char    *stmt;
+{
+       if (cond)
+               return;
+       ERROR(EASRT, stmt);
+}