diff options
Diffstat (limited to 'openbsd-compat')
-rw-r--r-- | openbsd-compat/sha1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openbsd-compat/sha1.c b/openbsd-compat/sha1.c index c616778e2..07e37be72 100644 --- a/openbsd-compat/sha1.c +++ b/openbsd-compat/sha1.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: sha1.c,v 1.24 2015/01/15 13:05:59 millert Exp $ */ | 1 | /* $OpenBSD: sha1.c,v 1.25 2015/01/16 16:48:51 deraadt Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * SHA-1 in C | 4 | * SHA-1 in C |
@@ -18,7 +18,7 @@ | |||
18 | 18 | ||
19 | #ifndef WITH_OPENSSL | 19 | #ifndef WITH_OPENSSL |
20 | 20 | ||
21 | #include <sys/param.h> | 21 | #include <sys/types.h> |
22 | #include <string.h> | 22 | #include <string.h> |
23 | 23 | ||
24 | #define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits)))) | 24 | #define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits)))) |