> cpu% 8c -FVw t.c
> t.c:12 syntax error, last name: maxarg2

i get the error in a different place.
% 8c -FVw t.c
t.c:7 syntax error, last name: maxarg1

> #define FMAX(a,b)
> (maxarg1=(a),maxarg2=(b),(maxarg1)>(maxarg2)?(maxarg1):(maxarg2));

the problem is the macro. adding a \ to escape \n or putting
the macro def on the same line fixes it.

Reply via email to