Zilog EZ80F916 User Manual
Page 197

UM014423-0607
Using the ANSI C-Compiler
ZiLOG Developer Studio II
eZ80Acclaim!
®
User Manual
177
170 Formal parameter has no corresponding actual parameter.
An attempt was made to call a function whose formal parameter list has more
elements than the number of arguments in the call.
171 Argument type is not compatible with formal parameter.
An attempt was made to call a function with an argument whose type is not
compatible with the type of the corresponding formal parameter.
172 Identifier "<name>" is not a structure or union tag.
An attempt was made to use the dot operator on an expression whose type was not
structure or union.
173 Identifier "<name>" is not a structure tag.
The tag of a declaration of a structure object does not have type structure.
174 Identifier "<name>" is not a union tag.
The tag of a declaration of a union object does not have type union.
175 Structure or union tag "<name>" is not defined.
The tag of a declaration of a structure or union object is not defined.
176 Only one storage class may be given in a declaration.
An attempt was made to give more than one storage class in a declaration.
177 Type specifier cannot have both "unsigned" and "signed".
An attempt was made to give both
unsigned
and
signed
type specifiers in a
declaration.
178 "unsigned" and "signed" may be used in conjunction only with "int", "long" or "char".
An attempt was made to use signed or unsigned in conjunction with a type specifier
other than
int
,
long
, or
char
.
179 "long" may be used in conjunction only with "int" or "double".
An attempt was made to use long in conjunction with a type specifier other than int or
double.
180 Illegal bit field length.
The length of a bit field was outside of the range 0-32.
181 Too many initializers for object.
An attempt was made to initialize an object with more elements than the object
contains.