summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjsing <>2024-03-28 05:21:20 +0000
committerjsing <>2024-03-28 05:21:20 +0000
commita70715f9bcc474e87032552cfa022697c2e05c6d (patch)
tree2c8796f61714a7f041b8394f24dd9b7f36eab3f5 /src
parent3ba017b40c08f9f2b9dfd72c9e48651ea4299682 (diff)
downloadopenbsd-a70715f9bcc474e87032552cfa022697c2e05c6d.tar.gz
openbsd-a70715f9bcc474e87032552cfa022697c2e05c6d.tar.bz2
openbsd-a70715f9bcc474e87032552cfa022697c2e05c6d.zip
Tidy includes.
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/ripemd/ripemd.c8
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/*