Subject: Re: pcc?
To: None <tech-userlevel@NetBSD.org>
From: Joerg Sonnenberger <joerg@britannica.bec.de>
List: tech-userlevel
Date: 12/29/2007 22:49:07
On Sat, Dec 29, 2007 at 10:44:04PM +0100, Anders Magnusson wrote:
> I would in that case recommend fixing the software (or adding something 
> like -D__FUNCTION__=__func__ to CFLAGS).

That works in most, but not all cases. __FUNCTION__ is expanded as
string by the preprocessor and merges with other strings. __func__ is a
special builtin variable of type const char * or so.

Joerg