summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbcook <>2016-09-04 12:35:23 +0000
committerbcook <>2016-09-04 12:35:23 +0000
commitae68ca230744de1b20f7d5476e1ca3248d12e1e1 (patch)
treea8940b280eaff500434332736d4d79e4ae09e8f4
parentad909e37b20a2c933e88e0e359b2fdb401d05092 (diff)
downloadopenbsd-ae68ca230744de1b20f7d5476e1ca3248d12e1e1.tar.gz
openbsd-ae68ca230744de1b20f7d5476e1ca3248d12e1e1.tar.bz2
openbsd-ae68ca230744de1b20f7d5476e1ca3248d12e1e1.zip
include <sys/types.h> to get <sys/cdefs.h> instead (for __warn_references)
corrected by deraadt@ / guenther@
-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