Include <string.h> for explicit_bzero.

We need this for vanilla nacl builds on Linux.
This commit is contained in:
iphydf 2020-05-02 00:19:55 +01:00
parent 9be4dbb433
commit e057bae563
No known key found for this signature in database
GPG Key ID: 3855DBA2D74403C9

View File

@ -29,6 +29,8 @@
#if defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
#include <windows.h>
#include <wincrypt.h>
#elif defined(HAVE_EXPLICIT_BZERO)
#include <string.h>
#endif
#endif