perl compilation problems

Chip Salzenberg chip at ateng.UUCP
Tue May 17 23:02:12 AEST 1988


In article <240 at sdba.UUCP> stan at sdba.UUCP (Stan Brown) writes:
>I am having a problem getting perl to compile on my machine.
>The lines of code of interest are:
>
>	for (j = 1; ; ) {
>	    arg[j++] = node[1];
>	    ^^^^^^^^^^^^^^^^^^^
>	    if (j >= i) {

My Xenix system (Microsoft C) had the same problem.  Change the offending
line to two lines:

	arg[j] = node[1];
	++j;

"Feeling much better."
-- 
Chip Salzenberg                "chip at ateng.UU.NET" or "codas!ateng!chip"
A T Engineering                My employer may or may not agree with me.
  "I must create a system or be enslaved by another man's." -- Blake



More information about the Comp.unix.questions mailing list