C/C++ Programmer's Guide (G06.25+)
TNS C Compiler Messages
HP C/C++ Programmer’s Guide for NonStop Systems—429301-008
20-28
Types of Compiler Messages
161
The C compiler encountered extra commas in a list of section names. When including
several section names from a file, use only the minimal number of commas necessary
to separate the section names. For example, the following #include directive causes
this error message.
#include "$system.system.cextdecs(mypid,,sqlcadisplay)"
162
This is a warning message that notifies you that the compiler has found an extra
character. The message specifies the character.
163
During the macro expansion phase, the C compiler’s internal buffer experienced an
overflow condition. Reduce the size of the macro text.
164
The C compiler encountered a variable whose type is not defined, or the compiler
encountered a situation where a comma is missing.
In the following example, if the type of the variable t is undefined, then the error
message is generated.
void f(t *x);
In the following example, there is a comma missing between the parameter types,
which generates the error message.
void f1(p1 p2);
too many commas
character extra-character is extra
macro expansion buffer overflow
type is not defined or a comma is missing