/*
 * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
 * See the copyright notice in the ACK home directory, in the file "Copyright".
 */
/* $Header$ */
/* PARAMETER TYPE LIST DEFINITION */

struct proto {
	struct proto *next;
	struct type *pl_type;	/* parameter type */
	struct idf *pl_idf;	/* parameter identifier */
	short pl_flag;		/* ELLIPSIS or FORMAL */
};

#define NO_PROTO	((struct proto *)0)

/* ALLOCDEF "proto" 10 */