string-util: fix prototype of explicit_bzero_safe() (#10513)

Follow-up for 87f5446311.
This commit is contained in:
Yu Watanabe 2018-10-25 11:41:55 +09:00 committed by GitHub
parent def34f63fe
commit 4e412d2684
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@ static inline void* explicit_bzero_safe(void *p, size_t l) {
return p;
}
#else
void explicit_bzero_safe(void *p, size_t l);
void *explicit_bzero_safe(void *p, size_t l);
#endif
char *string_erase(char *x);