From bd44342a1ebd8e69f6fd59ab7ec7da8a206c866c Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Tue, 29 Dec 2015 17:24:31 +0100 Subject: [PATCH] Remove unneeded extern "C" --- src/libsodium/crypto_pwhash/argon2/argon2.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/libsodium/crypto_pwhash/argon2/argon2.h b/src/libsodium/crypto_pwhash/argon2/argon2.h index bc567575..a7163030 100644 --- a/src/libsodium/crypto_pwhash/argon2/argon2.h +++ b/src/libsodium/crypto_pwhash/argon2/argon2.h @@ -17,10 +17,6 @@ #include #include -#if defined(__cplusplus) -extern "C" { -#endif - /*************************Argon2 input parameter * restrictions**************************************************/ @@ -280,8 +276,4 @@ int argon2i(argon2_context *context); */ int verify_i(argon2_context *context, const char *hash); -#if defined(__cplusplus) -} -#endif - #endif