diff options
author | jsing <> | 2024-03-28 05:21:20 +0000 |
---|---|---|
committer | jsing <> | 2024-03-28 05:21:20 +0000 |
commit | 28165f4292b1f71ce7a83d93015ffe9a72b349e8 (patch) | |
tree | 2c8796f61714a7f041b8394f24dd9b7f36eab3f5 | |
parent | 3dffd5ed666ba5b5b89721fc6dd1dcfcf297eea1 (diff) | |
download | openbsd-28165f4292b1f71ce7a83d93015ffe9a72b349e8.tar.gz openbsd-28165f4292b1f71ce7a83d93015ffe9a72b349e8.tar.bz2 openbsd-28165f4292b1f71ce7a83d93015ffe9a72b349e8.zip |
Tidy includes.
-rw-r--r-- | src/lib/libcrypto/ripemd/ripemd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libcrypto/ripemd/ripemd.c b/src/lib/libcrypto/ripemd/ripemd.c index 6bf8b61893..b05a63419b 100644 --- a/src/lib/libcrypto/ripemd/ripemd.c +++ b/src/lib/libcrypto/ripemd/ripemd.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ripemd.c,v 1.10 2024/03/28 05:16:11 jsing Exp $ */ | 1 | /* $OpenBSD: ripemd.c,v 1.11 2024/03/28 05:21:20 jsing Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -57,12 +57,12 @@ | |||
57 | */ | 57 | */ |
58 | 58 | ||
59 | #include <stdio.h> | 59 | #include <stdio.h> |
60 | #include <openssl/opensslv.h> | ||
61 | #include <openssl/crypto.h> | ||
62 | |||
63 | #include <stdlib.h> | 60 | #include <stdlib.h> |
64 | #include <string.h> | 61 | #include <string.h> |
62 | |||
65 | #include <openssl/opensslconf.h> | 63 | #include <openssl/opensslconf.h> |
64 | |||
65 | #include <openssl/crypto.h> | ||
66 | #include <openssl/ripemd.h> | 66 | #include <openssl/ripemd.h> |
67 | 67 | ||
68 | /* | 68 | /* |