ack/lang/m2/comp/idlist.H
1986-03-20 14:52:03 +00:00

13 lines
174 B
C

/* $Header$ */
#include <alloc.h>
/* Structure to link idf structures together
*/
struct id_list {
struct id_list *next;
struct idf *id_ptr;
};
/* ALLOCDEF "id_list" */