15 lines
		
	
	
	
		
			390 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			390 B
		
	
	
	
		
			Text
		
	
	
	
	
	
/* $Header$ */
 | 
						|
/* DECLARATION SPECIFIER DEFINITION */
 | 
						|
 | 
						|
struct decspecs	{
 | 
						|
	struct decspecs *next;
 | 
						|
	struct type *ds_type;	/* single type */
 | 
						|
	int ds_sc_given;	/* 1 if the st. class is explicitly given */
 | 
						|
	int ds_sc;		/* storage class, given or implied */
 | 
						|
	int ds_size;		/* LONG, SHORT or 0 */
 | 
						|
	int ds_unsigned;	/* 0 or 1 */
 | 
						|
};
 | 
						|
 | 
						|
/* ALLOCDEF "decspecs" */
 | 
						|
 | 
						|
extern struct decspecs null_decspecs;
 |