/usr/include/ComUtil/comterp.err is in ivtools-dev 1.2.11a1-11.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 | /* COMTERP Error Messages */
#define ERROR_FILE "comterp.err"
#define ERR_MEMORY			1000
/* "Memory limits exceeded" */
#define ERR_LINELENGTH			1100
/* "(%d) Line greater than %d characters long" */
#define ERR_TOKENLENGTH 		1101
/* "(%d) Token longer than maximum length of %d" */
#define ERR_EOFCOMMENT 			1102
/* "(%d) End of file encountered within comment" */
#define ERR_EOFSTRING 			1103
/* "(%d) End of file encountered within string or character constant" */
#define ERR_BADKEYWORD 			1104
/* "(%d) Illegal keyword" */
#define ERR_BADCHAR 			1105
/* "(%d) Illegal character constant" */
#define ERR_NOTOCTDIGIT			1106
/* "(%d) Non-octal digit in octal character constant" */
#define ERR_NOTHEXDIGIT			1107
/* "(%d) Hexadecimal digit must follow \\x" */
#define ERR_BADOCTCHAR			1108
/* "(%d) Octal character constant larger than one byte" */
#define ERR_BADHEXCHAR			1109
/* "(%d) Hexadecimal character constant larger than one byte" */
#define ERR_BADINT			1110
/* "(%d) Illegal integer constant" */
#define ERR_BADOCT 			1111
/* "(%d) Illegal octal constant" */
#define ERR_BADHEX			1112
/* "(%d) Illegal hexadecimal constant" */
#define ERR_BADFLOAT 			1113
/* "(%d) Illegal floating-point constant" */
#define ERR_TOOBIGINT 			1114
/* "(%d) Integer constant exceeds maximum possible size" */
#define ERR_TOOBIGOCT 			1115
/* "(%d) Octal constant exceeds maximum possible size" */
#define ERR_TOOBIGHEX 			1116
/* "(%d) Hexadecimal constant exceeds maximum possible size" */
#define ERR_TOOBIGFLOAT 		1117
/* "(%d) Floating point constant exceeds maximum possible size" */
#define ERR_TOOSMLFLOAT 		1118
/* "(%d) Floating point constant exceeds minimum possible size" */
#define ERR_ILLEGALCHAR 		1119
/* "(%d) Illegal character (ASCII %d)" */
#define ERR_NLINSTRING 			1120
/* "(%d) Unexpected newline in string constant" */
#define ERR_NLINCHAR 			1121
/* "(%d) Unexpected newline in character constant" */
#define ERR_CONSTSEP 			1122
/* "(%d) Insufficient separation from trailing constant" */
#define ERR_OUTFILE			1123
/* "(%d) Error in writing to output file" */
#define ERR_INFILE			1124
/* "(%d) Error in reading input file" */
#define ERR_EOFNEWLINE			1125
/* "(%d) New-line expected before end-of-file" */
#define ERR_ILLEGALOP			1200
/* "Illegal operator (%c)" */
#define ERR_OPRTBLMAXED			1201
/* "Maximum number of operators exceeded (%d)" */
#define ERR_NO_POSTFIX			1202
/* "Postfix version of %s can't coexist with binary and prefix versions" */
#define ERR_NO_BINARY			1203
/* "Binary version of %s can't coexist with both unary versions" */
#define	ERR_NO_POSTFIX_WITH_BINARY	1204
/* "Postfix version of %s can't coexist with binary version" */
#define	ERR_NO_BINARY_WITH_POSTFIX	1205
/* "Binary version of %s can't coexist with postfix version" */
#define ERR_NO_OPTABLE			1206
/* "Operator table has not been created" */
#define ERR_PRIORITY_RANGE		1207
/* "Priority (%d) out of range" */
#define ERR_UNEXPECTED_OPERATOR		1300
/* "(%d) Unexpected operator (%s)" */
#define ERR_UNEXPECTED_IDENTIFIER       1301
/* "(%d) Unexpected identifier (%s)" */
#define ERR_UNEXPECTED_LITERAL          1302
/* "(%d) Unexpected literal constant (%s)" */
#define ERR_UNEXPECTED_KEYWORD		1303
/* "(%d) Unexpected keyword (%s)" */
#define ERR_UNEXPECTED_EOF    		1304
/* "(%d) Unexpected end-of-file" */
#define ERR_UNEXPECTED_RPAREN		1305
/* "(%d) Unexpected right parenthesis" */
#define ERR_UNEXPECTED_RBRACKET		1306
/* "(%d) Unexpected right bracket" */
#define ERR_UNEXPECTED_RBRACE		1307
/* "(%d) Unexpected right brace" */
#define ERR_AMBIGUOUS_OPERATOR          1308
/* "(%d) Ambiguous operator (%s)" */
#define ERR_UNEXPECTED_LPAREN		1309
/* "(%d) Unexpected left parenthesis" */
#define ERR_UNEXPECTED_LBRACKET		1310
/* "(%d) Unexpected left bracket" */
#define ERR_UNEXPECTED_LBRACE		1311
/* "(%d) Unexpected left brace" */
#define ERR_UNEXPECTED_RANGBRACK	1312
/* "(%d) Unexpected right angle bracket" */
#define ERR_UNEXPECTED_LANGBRACK	1313
/* "(%d) Unexpected left angle bracket" */
#define ERR_UNEXPECTED_RANGBRACK2	1314
/* "(%d) Unexpected double right angle bracket" */
#define ERR_UNEXPECTED_LANGBRACK2	1315
/* "(%d) Unexpected double left angle bracket" */
#define ERR_TYPE_BADPARAMS		5201
/* "Bad parameters in function call" */
#define ERR_TYPE_SYMIDBAD		5202
/* "Illegal symbol identifier in type list" */
#define ERR_TYPE_BADSIMPLE		5203
/* "Illegal simple type in type identifier list" */
#define ERR_TYPE_BADAGGREGATE		5204
/* "Illegal aggregate type; must be ARRAY or STREAM only" */
#define ERR_TYPE_TYPEIDBAD		5205
/* "Type identifier is outside table limits" */
#define ERR_TYPE_TYPEIDEMPTY		5206
/* "Type identifier is for an empty table entry" */
#define ERR_TXTUT_FNOTOPEN		 6000
/* "Attempted read/write before file open" */
#define ERR_TXTUT_DELIM			 6001
/* "Input string begins with internal delimiter: .!#ID#" */
#define ERR_TXTUT_FOPEN			 6002
/* "Error during file open" */
#define ERR_UNKNOWN_COMMAND     3000
/* "Unknown command supplied to interpreter: %s" */
#define ERR_DIV_BY_ZERO     3001
/* "Divide by zero" */
#define ERR_INCOMPLETE_EXPRESSION     3002
/* "Incomplete expression" */
#define ERR_MOD_BY_ZERO     3003
/* "Mod by zero" */
 |