diff options
Diffstat (limited to 'src/include/port.h')
-rw-r--r-- | src/include/port.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/include/port.h b/src/include/port.h index 55619d893ce..30b6378ae56 100644 --- a/src/include/port.h +++ b/src/include/port.h @@ -378,6 +378,10 @@ extern int isinf(double x); #endif /* __clang__ && !__cplusplus */ #endif /* !HAVE_ISINF */ +#ifndef HAVE_EXPLICIT_BZERO +extern void explicit_bzero(void *buf, size_t len); +#endif + #ifndef HAVE_STRTOF extern float strtof(const char *nptr, char **endptr); #endif |