date and time created 81/03/02 21:28:10 by peter
authorPeter B. Kessler <peter@ucbvax.Berkeley.EDU>
Tue, 3 Mar 1981 13:28:10 +0000 (05:28 -0800)
committerPeter B. Kessler <peter@ucbvax.Berkeley.EDU>
Tue, 3 Mar 1981 13:28:10 +0000 (05:28 -0800)
SCCS-vsn: usr.bin/pascal/pxp/func.c 1.1

usr/src/usr.bin/pascal/pxp/func.c [new file with mode: 0644]

diff --git a/usr/src/usr.bin/pascal/pxp/func.c b/usr/src/usr.bin/pascal/pxp/func.c
new file mode 100644 (file)
index 0000000..94023db
--- /dev/null
@@ -0,0 +1,22 @@
+static char *sccsid = "@(#)func.c      1.1 (Berkeley) %G%";
+/* Copyright (c) 1979 Regents of the University of California */
+#
+/*
+ * pxp - Pascal execution profiler
+ *
+ * Bill Joy UCB
+ * Version 1.2 January 1979
+ */
+
+#include "0.h"
+#include "tree.h"
+
+/*
+ * A function call
+ */
+funccod(r)
+       register int *r;
+{
+
+       call(r[2], r[3]);
+}