13 lines
174 B
C
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" */
|