From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <4b60ff3c1f9078ce8becb8a4ba82c103@9netics.com> To: 9fans@cse.psu.edu Subject: Re: [9fans] compiling error Date: Tue, 13 Mar 2007 23:21:56 -0800 From: Skip Tavakkolian <9nut@9netics.com> In-Reply-To: <01c401c76603$5335ac70$f9a10550$@com> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Topicbox-Message-UUID: 230426aa-ead2-11e9-9d60-3106f5b1d025 > 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.