Pristine Ack-5.5
[Ack-5.5.git] / lang / cem / cemcom / decspecs.str
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: decspecs.str,v 3.6 1994/06/24 12:03:12 ceriel Exp $ */
6 /* DECLARATION SPECIFIER DEFINITION */
7
8 struct decspecs {
9         struct decspecs *next;
10         struct type *ds_type;   /* single type */
11         int ds_notypegiven;     /* set if type not given explicitly */
12         int ds_sc_given;        /* 1 if the st. class is explicitly given */
13         int ds_sc;              /* storage class, given or implied */
14         int ds_size;            /* LONG, SHORT or 0 */
15         int ds_unsigned;        /* 0 or 1 */
16 };
17
18 extern struct decspecs null_decspecs;