Zilog ZUSBOPTS User Manual
Page 234

Warning and Error Messages
UM017105-0511
206
Zilog Developer Studio II – ZNEO™
User Manual
191 Cannot perform pointer arithmetic on pointer to void.
An attempt was made to
perform pointer arithmetic on pointer to void.
192 Cannot initialize object with "extern" storage class.
An attempt was made to ini-
tialize variable with
extern
storage class.
193 Missing "
An attempt was made to use a variable without any
previous definition or declaration.
194 Recursive structure declaration.
A structure member can not be of same type as the
structure itself.
195 Initializer is not assignment compatible.
The initializer type does not match with
the variable being initialized.
196 Empty parameter list is an obsolescent feature.
Empty parameter lists are not
allowed.
197 No function prototype "
The function <name> is called without
any previous definition or declaration.
198 "old style" formal parameter declarations are obsolescent.
Change the parameter
declarations.
201 Only one memory space can be specified.
An attempt was made to declare a vari-
able with multiple memory space specifier.
202 Unrecognized/invalid type specifier.
An attempt was made to declare a variable
with unknown type specifier.
204 Ignoring space specifiers (e.g. near, far, rom) on local, parameter or struct
member.
An attempt was made to declare a local, parameter, or struct member with a
memory space specifier. The space specifier for a local or parameter is decided based on
the memory model chosen. The space specifier for a struct member is decided based on
the space specifier of the entire struct. Any space specifier on local, parameter, or struct
member is ignored.
205 Ignoring const or volatile qualifier.
An attempt was made to assign a pointer to a
type with const qualifier to a pointer to a type with no const qualifier, or an attempt was
made to assign a pointer to a type with volatile qualifier to a pointer to a type with no vol-
atile qualifier.
206 Cannot initialize typedef.
An attempt was made to initialize a typedef.
207 Aggregate or union objects may be initialized with constant expressions only.
An attempt was made to initialize an array or struct with non constant expression.