diff options
-rw-r--r-- | src/util/sha1/sha1.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/util/sha1/sha1.h b/src/util/sha1/sha1.h index de07e1a477a..243481a98e4 100644 --- a/src/util/sha1/sha1.h +++ b/src/util/sha1/sha1.h @@ -31,7 +31,6 @@ void SHA1Pad(SHA1_CTX *); void SHA1Transform(uint32_t [5], const uint8_t [SHA1_BLOCK_LENGTH]); void SHA1Update(SHA1_CTX *, const uint8_t *, size_t); void SHA1Final(uint8_t [SHA1_DIGEST_LENGTH], SHA1_CTX *); -__END_DECLS #define HTONDIGEST(x) do { \ x[0] = htonl(x[0]); \ |