Subject: Re: CVS commit: src/common/lib/libprop
To: Jed Davis <jdev@panix.com>
From: Jason Thorpe <thorpej@shagadelic.org>
List: source-changes
Date: 10/17/2006 16:25:39
On Oct 17, 2006, at 4:18 PM, Jed Davis wrote:

> Alan Barrett <apb@cequrux.com> writes:
>
>> On Thu, 12 Oct 2006, Jason R Thorpe wrote:
>>> Modified Files:
>>> 	src/common/lib/libprop: prop_rb.c
>>
>> +#ifndef __predict_false
>> +#define        __predict_false(x)      (x)
>> +#endif
>
> Um... won't that ifdef fail to notice the builtin, as it's not a
> preprocessor macro?

__predict_false() IS a CPP macro, defined in the NetBSD <sys/cdefs.h>.

-- thorpej