* Bruno Haible:
> Florian Weimer wrote:
>> lib/xmalloc.c contains this function definition, unconditionally:
>>
>> static void * _GL_ATTRIBUTE_PURE
>> nonnull (void *p)
>> {
>> if (!p)
>> xalloc_die ();
>> return p;
>> }
>>
>> But the declaration of xalloc_die in lib/xalloc
Florian Weimer wrote:
> lib/xmalloc.c contains this function definition, unconditionally:
>
> static void * _GL_ATTRIBUTE_PURE
> nonnull (void *p)
> {
> if (!p)
> xalloc_die ();
> return p;
> }
>
> But the declaration of xalloc_die in lib/xalloc.h is conditional:
>
> #if
lib/xmalloc.c contains this function definition, unconditionally:
static void * _GL_ATTRIBUTE_PURE
nonnull (void *p)
{
if (!p)
xalloc_die ();
return p;
}
But the declaration of xalloc_die in lib/xalloc.h is conditional:
#if GNULIB_XALLOC_DIE
/* This function is alway