summaryrefslogtreecommitdiff
path: root/zen/argon2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'zen/argon2.cpp')
-rw-r--r--zen/argon2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/zen/argon2.cpp b/zen/argon2.cpp
index 1250e545..5918b4b3 100644
--- a/zen/argon2.cpp
+++ b/zen/argon2.cpp
@@ -37,9 +37,9 @@
#include "argon2.h"
#include <cassert>
-#include <cstring>
+//#include <cstring>
#include <cstdint>
-#include <cstdlib>
+//#include <cstdlib>
#if defined __GNUC__ //including clang
#pragma GCC diagnostic ignored "-Wimplicit-fallthrough" //"this statement may fall through"
bgstack15