new copyright; att/bsd/shared
[unix-history] / usr / src / usr.bin / pascal / pxp / proc.c
CommitLineData
0fc6e47b
KB
1/*-
2 * Copyright (c) 1980 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * %sccs.include.redist.c%
252367af
DF
6 */
7
8#ifndef lint
0fc6e47b
KB
9static char sccsid[] = "@(#)proc.c 5.2 (Berkeley) %G%";
10#endif /* not lint */
252367af 11
4a98b8d2
PK
12/*
13 * pxp - Pascal execution profiler
14 *
15 * Bill Joy UCB
16 * Version 1.2 January 1979
17 */
18
19#include "0.h"
20#include "tree.h"
21
22proc(r)
23 int *r;
24{
25
26 call(r[2], r[3]);
27}