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

int main(int argc, char *argv[])
{
int argc; /* This line causes the warning */
}
226
invalid value for enum literal literal-name
Cause
Enumerated types must be compatible with the type int. Therefore, the value assigned to an
enumerated type cannot exceed the range of integer for a given memory model. For example,
an int in the large-memory model is 16 bits signed, so an enumerated value cannot exceed
32767.
228
fatal error, compiler terminates
Cause
The compiler issues this message if physical limitations prevent further compilation. The surrounding
error messages give more details as to the cause of the failure.
229
language specified for non-routine identifier, pragma function is ignored
Cause
The identifier used in the pragma FUNCTION is not a known function. Ensure that the identifier
has been declared.
230
string is not a valid ANSI-compliant construct
Cause
Use the type double instead of the type long long, which is not compliant with the ISO/ANSI
C Standard.
233
Unable to open input file file-name
Cause
The compiler cannot open the input file. Check that the file is secured properly and the system
is available.
234
Unable to read input file file-name
Cause
The compiler cannot read the input file. Check that the file is secured properly and the system
is available.
235
Unable to position input file
Cause
The compiler cannot set the position for reading the input file.
358 TNS C Compiler Messages