Pristine Ack-5.5
[Ack-5.5.git] / util / cpp / idf.h
1 /* $Id: idf.h,v 1.5 1994/06/24 10:18:24 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 struct id_usr {
7         union {
8                 struct macro *idu_macro;
9                 struct idf *idu_file;
10         } idu_x;
11         int idu_resmac;
12 };
13
14 #define IDF_TYPE struct id_usr
15 #define IDF_HSIZE 6
16 #define id_macro id_user.idu_x.idu_macro
17 #define id_file id_user.idu_x.idu_file
18 #define id_resmac id_user.idu_resmac
19
20 #include <idf_pkg.spec>