1: #
2: /*
3: * pxp - Pascal execution profiler
4: *
5: * Bill Joy UCB
6: * Version 1.2 January 1979
7: */
8:
9: #include "0.h"
10: #include "tree.h"
11:
12: /*
13: * A function call
14: */
15: funccod(r)
16: register int *r;
17: {
18:
19: call(r[2], r[3]);
20: }