diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2023-08-10 13:41:57 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2023-08-10 13:41:57 +0000 |
commit | 007b263e73941f53b208ffc6f31e59fb1eaef48a (patch) | |
tree | ca6eb9cfe14de91f46342f49540de1a1df42e0a4 /lib/libcrypto/md4 | |
parent | 36da772a1854c61b0b006455041b8504806683ba (diff) |
Tidy includes.
Diffstat (limited to 'lib/libcrypto/md4')
-rw-r--r-- | lib/libcrypto/md4/md4.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/libcrypto/md4/md4.c b/lib/libcrypto/md4/md4.c index d05d5ace0d3..12e3ac71d48 100644 --- a/lib/libcrypto/md4/md4.c +++ b/lib/libcrypto/md4/md4.c @@ -1,4 +1,4 @@ -/* $OpenBSD: md4.c,v 1.6 2023/08/10 07:15:23 jsing Exp $ */ +/* $OpenBSD: md4.c,v 1.7 2023/08/10 13:41:56 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -57,11 +57,9 @@ */ #include <stdio.h> -#include <openssl/opensslv.h> -#include <openssl/crypto.h> - #include <stdlib.h> #include <string.h> + #include <openssl/opensslconf.h> #include <openssl/md4.h> |