summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto
diff options
context:
space:
mode:
authorbcook <>2016-09-04 12:35:23 +0000
committerbcook <>2016-09-04 12:35:23 +0000
commit5ada7b1d97b8f747507b099fa6c8324f2b410489 (patch)
treea8940b280eaff500434332736d4d79e4ae09e8f4 /src/lib/libcrypto
parent4c3227121f5bf798fe9f6f79ae9a4c10d0e1f1e5 (diff)
downloadopenbsd-5ada7b1d97b8f747507b099fa6c8324f2b410489.tar.gz
openbsd-5ada7b1d97b8f747507b099fa6c8324f2b410489.tar.bz2
openbsd-5ada7b1d97b8f747507b099fa6c8324f2b410489.zip
include <sys/types.h> to get <sys/cdefs.h> instead (for __warn_references)
corrected by deraadt@ / guenther@
Diffstat (limited to 'src/lib/libcrypto')
-rw-r--r--src/lib/libcrypto/evp/evp_enc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/evp/evp_enc.c b/src/lib/libcrypto/evp/evp_enc.c
index 7aa505312a..f0b2639f60 100644
--- a/src/lib/libcrypto/evp/evp_enc.c
+++ b/src/lib/libcrypto/evp/evp_enc.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: evp_enc.c,v 1.33 2016/09/04 12:20:06 bcook Exp $ */ 1/* $OpenBSD: evp_enc.c,v 1.34 2016/09/04 12:35:23 bcook 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 *
@@ -60,7 +60,7 @@
60#include <stdlib.h> 60#include <stdlib.h>
61#include <string.h> 61#include <string.h>
62 62
63#include <sys/cdefs.h> 63#include <sys/types.h>
64 64
65#include <openssl/opensslconf.h> 65#include <openssl/opensslconf.h>
66 66