Hello
That \n was inserted by this "intelligent" email client sorry.
The code compiles unless you uncomment the // print("%f",
fabs(a)*FMAX(b,1.0)/c);
Thanks
Gabi
-----Mensaje original-----
De: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] En nombre de Skip
Tavakkolian
Enviado el: miércoles, 14 de marzo de 2007 8:22
Para: [email protected]
Asunto: Re: [9fans] compiling error
> 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.