Hello,
I tried to compile the Drawterm (a graphical terminal for Plan9 sessions https://swtch.com/drawterm/ ) on the IRIX 6.5 and it ends with something like that:
The code in the drawterm/libip/eipfmt.c is:
Honestly, I don't have idea whut can be wrong.
I tried to compile the Drawterm (a graphical terminal for Plan9 sessions https://swtch.com/drawterm/ ) on the IRIX 6.5 and it ends with something like that:
Code: Select all
cc-1029 cc: ERROR File = eipfmt.c, Line = 12
An expression is expected at this point.
[0x00] 0 | Isprefix,
The code in the drawterm/libip/eipfmt.c is:
Code: Select all
uchar prefixvals[256] =
{
[0x00] 0 | Isprefix,
[0x80] 1 | Isprefix,
[0xC0] 2 | Isprefix,
[0xE0] 3 | Isprefix,
[0xF0] 4 | Isprefix,
[0xF8] 5 | Isprefix,
[0xFC] 6 | Isprefix,
[0xFE] 7 | Isprefix,
[0xFF] 8 | Isprefix,
};
Honestly, I don't have idea whut can be wrong.