1989-02-07 11:04:05 +00:00
|
|
|
/*
|
|
|
|
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
|
|
|
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
|
|
|
*/
|
1994-06-27 08:03:14 +00:00
|
|
|
/* $Id$ */
|
1989-02-07 11:04:05 +00:00
|
|
|
/* PARAMETER TYPE LIST DEFINITION */
|
|
|
|
|
|
|
|
struct proto {
|
|
|
|
struct proto *next;
|
|
|
|
struct type *pl_type; /* parameter type */
|
|
|
|
struct idf *pl_idf; /* parameter identifier */
|
1989-09-19 16:13:23 +00:00
|
|
|
short pl_flag; /* see define's */
|
1989-02-07 11:04:05 +00:00
|
|
|
};
|
|
|
|
|
1989-09-19 16:13:23 +00:00
|
|
|
#define NO_PROTO ((struct proto *)0)
|
|
|
|
|
|
|
|
#define PL_VOID 0x01
|
|
|
|
#define PL_FORMAL 0x02
|
|
|
|
#define PL_ELLIPSIS 0x04
|
|
|
|
#define PL_ERRGIVEN 0x08
|
1989-02-07 11:04:05 +00:00
|
|
|
|
1990-01-10 17:33:35 +00:00
|
|
|
/* ALLOCDEF "proto" 20 */
|