decspecs.str 583 B

123456789101112131415161718
  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. /* DECLARATION SPECIFIER DEFINITION */
  7. struct decspecs {
  8. struct decspecs *next;
  9. struct type *ds_type; /* single type */
  10. int ds_notypegiven; /* set if type not given explicitly */
  11. int ds_sc_given; /* 1 if the st. class is explicitly given */
  12. int ds_sc; /* storage class, given or implied */
  13. int ds_size; /* LONG, SHORT or 0 */
  14. int ds_unsigned; /* 0 or 1 */
  15. };
  16. extern struct decspecs null_decspecs;