proto.str 541 B

12345678910111213141516171819202122
  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. /* $Id$ */
  6. /* PARAMETER TYPE LIST DEFINITION */
  7. struct proto {
  8. struct proto *next;
  9. struct type *pl_type; /* parameter type */
  10. struct idf *pl_idf; /* parameter identifier */
  11. short pl_flag; /* see define's */
  12. };
  13. #define NO_PROTO ((struct proto *)0)
  14. #define PL_VOID 0x01
  15. #define PL_FORMAL 0x02
  16. #define PL_ELLIPSIS 0x04
  17. #define PL_ERRGIVEN 0x08
  18. /* ALLOCDEF "proto" 20 */