C/C++ Programmer's Guide (G06.27+, H06.08+, J06.03+)

137
name is an obsolete feature
Cause
The specified feature is obsolete in this release of the C compiler.
139
arithmetic overflow/underflow detected in constant arithmetic
Cause
The resultant value of a constant expression exceeded the range of the object to which it was
assigned.
143
filename has been truncated to file-name
Cause
The preprocessor encountered a file name longer than 8 characters in an #include directive
and so truncated it to the specified name.
144
illegal use of _cc_status, this declaration type is reserved for TAL
procedure return status
Cause
The type _cc_status is valid only as the function return-type in an interface declaration of a
TAL procedure.
145
illegal function pointer operation
Cause
The compiler encountered an invalid use of a pointer to a function.
146
missing comma between directives
Cause
The compiler encountered a #pragma directive that specifies multiple pragmas, but the pragmas
are not separated by commas.
147
non-standard use of cast operator in integral constant expression
Cause
In an integral constant expression, the compiler encountered a cast operator that converts a
pointer value to an arithmetic type. The C compiler does not support this nonstandard use of the
cast operator.
148
return possibly missing
Cause
A function with a non-void return type does not have a return statement that is unconditionally
executed and that appears lexically immediately before the function's closing brace.
Types of Compiler Messages 347