I'm developping with MICROFOCUM COBOL on a Unix (HP-UX). At compilation, i receive "Illegal character" errors...
a) The same source work great on a OPEN VMS System !
* * * * * * Comments * * * * * * *
* CHR_131 = é
* CHR_132 = â
SYMBOLIC CHARACTERS CHR_131 IS 131,
CHR_132 IS 132.
b) Compilation
cob -x test.cob
33 SYMBOLIC CHARACTERS CHR_131 IS 131,
* 4-S************************* **
** Illegal character
34 CHR_132 IS 132.
* 4-S************************* **
** Illegal character
Do i have to specify a character set or the language somewhere ?
Do you have any idea ?
a) The same source work great on a OPEN VMS System !
* * * * * * Comments * * * * * * *
* CHR_131 = é
* CHR_132 = â
SYMBOLIC CHARACTERS CHR_131 IS 131,
CHR_132 IS 132.
b) Compilation
cob -x test.cob
33 SYMBOLIC CHARACTERS CHR_131 IS 131,
* 4-S************************* **
** Illegal character
34 CHR_132 IS 132.
* 4-S************************* **
** Illegal character
Do i have to specify a character set or the language somewhere ?
Do you have any idea ?