Pristine Ack-5.5
[Ack-5.5.git] / util / ego / share / map.c
1 /* $Id: map.c,v 1.4 1994/06/24 10:30:32 ceriel Exp $ */
2 /*
3  * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
4  * See the copyright notice in the ACK home directory, in the file "Copyright".
5  */
6 /* M A P . C */
7
8 #include "types.h"
9 #include "map.h"
10
11 short   plength;
12 short   olength;
13 short   llength;
14 short   blength;
15 short   lplength;
16 line_p  *lmap;
17 bblock_p *lbmap;
18 proc_p  *pmap   ;       /* dynamically allocated array that maps
19                          * every proc_id to a proc_p.
20                          */
21 obj_p   *omap;          /* maps obj_id to obj_p */
22 loop_p  *lpmap;         /* maps loop_id to loop_p */
23 bblock_p *bmap;         /* maps block_id to bblock_p */
24
25 dblock_p        fdblock;        /* first dblock */
26 proc_p          fproc;          /* first proc   */