decspecs.str 393 B

123456789101112131415
  1. /* $Header$ */
  2. /* DECLARATION SPECIFIER DEFINITION */
  3. struct decspecs {
  4. struct decspecs *next;
  5. struct type *ds_type; /* single type */
  6. int ds_sc_given; /* 1 if the st. class is explicitly given */
  7. int ds_sc; /* storage class, given or implied */
  8. int ds_size; /* LONG, SHORT or 0 */
  9. int ds_unsigned; /* 0 or 1 */
  10. };
  11. /* ALLOCDEF "decspecs" 50 */
  12. extern struct decspecs null_decspecs;