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-34
Types of Compiler Messages
190
The C compiler issues this error if a const variable is used in the left-hand side of an
assignment.
191
The C compiler encountered an illegal pointer. Check to see if the program illegally
passes a const * formal parameter to a reference parameter without the const
attribute.
194
An external function name specified with an _alias attribute is one of these:
Used in more than one declaration
Applied to an object that is not a function
Specified using incorrect syntax
195
The vararg function cannot be made into an extensible or variable function.
196
Function attributes are duplicated or conflict with each other. For example:
_extensible _extensible int foo(int x);
/* _extensible specified twice */
_extensible _variable in for (int x);
/* _extensible and _variable cannot both be specified */
illegal usage of const attribute
illegal pointer conversion between const and non-const
attribute
invalid alias
vararg function cannot have _extensible or _variable
attribute
illegal function attribute