idlist.H 174 B

123456789101112
  1. /* $Header$ */
  2. #include <alloc.h>
  3. /* Structure to link idf structures together
  4. */
  5. struct id_list {
  6. struct id_list *next;
  7. struct idf *id_ptr;
  8. };
  9. /* ALLOCDEF "id_list" */