Re: [PATCH 3/5] Support clang for explicit_bzero

2020-04-11 Thread Bruno Haible
Hi Bastien, > diff --git a/lib/explicit_bzero.c b/lib/explicit_bzero.c > index b355f9bdf..21bbd67e8 100644 > --- a/lib/explicit_bzero.c > +++ b/lib/explicit_bzero.c > @@ -56,9 +56,15 @@ explicit_bzero (void *s, size_t len) >(void) SecureZeroMemory(s,len); > #else >memset (s, '\0', len);

[PATCH 3/5] Support clang for explicit_bzero

2020-04-11 Thread roucaries . bastien
From: Bastien Roucariès According to https://bugs.llvm.org/show_bug.cgi?id=15495#c11 llvm need g type constraint Signed-off-by: Bastien Roucariès --- lib/explicit_bzero.c | 14 ++ 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/lib/explicit_bzero.c