1
mirror of https://github.com/jedisct1/libsodium.git synced 2024-12-20 02:25:14 -07:00

Remove unneeded extern "C"

This commit is contained in:
Frank Denis 2015-12-29 17:24:31 +01:00
parent 71056e2f75
commit bd44342a1e

View File

@ -17,10 +17,6 @@
#include <stddef.h>
#include <limits.h>
#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