From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <18c5384aab5bf87a417792ace0ff6a09@plan9.bell-labs.com> From: Dennis Ritchie To: 9fans@cse.psu.edu Subject: Re: [9fans] "ridiculous benchmarks"-r-us In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Date: Fri, 9 Jan 2004 19:37:34 -0500 Topicbox-Message-UUID: b65d39b0-eacc-11e9-9e20-41e7f4b1d025 > This is sort of off topic, but sort of on topic. Is the following > legal C89 (or C99) code? > #ifdef notdef > Why won't this work? > #endif Not really legal (Ken's off-brand cpp). #ifdef ... #endif wants tokens, and the ' is unmatched. Try it with /bin/cpp . Dennis