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-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, this #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 compilers 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 this example, if the type of the variable t is undefined, the error message is
generated.
void f(t *x);
In this 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