On Tue, 22 Nov 2016, Florian Weimer wrote:
> I have no idea at all why __bzero was introduced. It doesn't look like a
It used to be used in a bits/string2.h definition of memset which
involved:
__builtin_constant_p (c) && (c) == '\0'
? ({ void *__s = (s); __bzero (__s, n); __s; })
: memset (s, c, n)
--
Joseph S. Myers
joseph@codesourcery.com