Re: C library for vsnprintf



Yinghui Zhang wrote:

char vsnprintf ();
/* The GNU C library defines this for functions which it implements
to always fail with ENOSYS. Some functions are actually named
something starting with __ and the normal name is an alias. */
#if defined (__stub_vsnprintf) || defined (__stub___vsnprintf)
choke me
#else
char (*f) () = vsnprintf;
#endif
#ifdef __cplusplus
}
#endif

int
main ()
{
return f != vsnprintf;
;
return 0;
}
_ACEOF

This might not compile HP aCC, try commenting this part of
the code (have a backup of configure before you do this)
and set "ac_cv_func_vsnprintf=yes" by defualt. You are
getting no vsnprintf support message because the program
is not getting compiled.

--vishwas.

.