ack/mach/proto/ncg/label.h

18 lines
346 B
C
Raw Normal View History

1990-07-18 14:53:19 +00:00
/*
* This file contains the structures that hold information about the labels.
* The height and the fallthrough functions of the table.
*
* Author: Hans van Eck.
*/
typedef struct label *label_p;
typedef struct label {
label_p lb_next;
word lb_number;
int lb_height;
short lb_fallthrough;
} label_t;
extern label_p get_label();