Pristine Ack-5.5
[Ack-5.5.git] / mach / proto / ncg / label.h
1 /*
2  * This file contains the structures that hold information about the labels.
3  * The height and the fallthrough functions of the table. 
4  *
5  * Author: Hans van Eck. 
6  */
7
8 typedef struct label *label_p;
9
10 typedef struct label {
11         label_p lb_next;
12         word    lb_number;
13         int     lb_height;
14         short   lb_fallthrough;
15     } label_t;
16
17 extern label_p get_label();