Wrap with KORE_PEDANTIC_MALLOC

This commit is contained in:
Joris Vink 2014-04-22 13:05:16 +02:00
parent d98d56fb20
commit 2bdc9210a0
1 changed files with 2 additions and 0 deletions

View File

@ -120,8 +120,10 @@ kore_strdup(const char *str)
return (nstr);
}
#if defined(KORE_PEDANTIC_MALLOC)
void
explicit_bzero(void *addr, size_t len)
{
bzero(addr, len);
}
#endif