idf.h 464 B

1234567891011121314151617181920212223
  1. /*
  2. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  3. * See the copyright notice in the ACK home directory, in the file "Copyright".
  4. *
  5. * Author: Ceriel J.H. Jacobs
  6. */
  7. /* U S E R D E C L A R E D P A R T O F I D F */
  8. /* $Id$ */
  9. struct id_u {
  10. int id_res;
  11. struct def *id_df;
  12. };
  13. #define IDF_TYPE struct id_u
  14. #define id_reserved id_user.id_res
  15. #define id_def id_user.id_df
  16. #include <idf_pkg.spec>
  17. typedef struct idf t_idf;