C/C++ Programmer's Guide (G06.27+, H06.03+)

Table Of Contents
TNS C Compiler Messages
HP C/C++ Programmer’s Guide for NonStop Systems429301-010
20-31
Types of Compiler Messages
175
Only one storage class specifier is allowed in each of these:
a simple variable declaration
an array declaration
a pointer declaration
a function definition or a function prototype.
The compiler encountered one of these entities that contains two storage class
specifiers.
176
A simple variable, an array, a pointer variable, and the return type of a function can
have only one type. The compiler encountered a declaration for one of these entities
that has two types specified.
177
The C compiler encountered a typedef declaration in which two typedef names are
specified. For example,
typedef char i j;
178
The C compiler encountered a type definition that is incorrectly defined with regards to
the signed or unsigned attribute. For example,
unsigned struct x
two storage class specifiers exist in the same declaration
two type qualifiers exist in the same declaration
two typedef names exist in the same declaration
invalid signed/unsigned type