18 lines
273 B
C
18 lines
273 B
C
/* M I S C E L L A N E O U S */
|
|
|
|
/* $Header$ */
|
|
|
|
/* Structure to link idf structures together
|
|
*/
|
|
struct id_list {
|
|
struct id_list *next;
|
|
struct idf *id_ptr;
|
|
};
|
|
|
|
/* ALLOCDEF "id_list" */
|
|
|
|
#define is_anon_idf(x) ((x)->id_text[0] == '#')
|
|
|
|
extern struct idf
|
|
*gen_anon_idf();
|