Pristine Ack-5.5
[Ack-5.5.git] / lang / m2 / comp / idf.h
1 /*
2  * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
3  * See the copyright notice in the ACK home directory, in the file "Copyright".
4  *
5  * Author: Ceriel J.H. Jacobs
6  */
7
8 /* U S E R   D E C L A R E D   P A R T   O F   I D F */
9
10 /* $Id: idf.h,v 1.6 1994/06/24 12:41:03 ceriel Exp $ */
11
12 struct id_u {
13         int id_res;
14         struct def *id_df;
15 };
16
17 #define IDF_TYPE        struct id_u
18 #define id_reserved     id_user.id_res
19 #define id_def          id_user.id_df
20
21 #include        <idf_pkg.spec>
22
23 typedef struct idf      t_idf;