diff options
author | Brent Cook <bcook@cvs.openbsd.org> | 2016-09-04 12:35:24 +0000 |
---|---|---|
committer | Brent Cook <bcook@cvs.openbsd.org> | 2016-09-04 12:35:24 +0000 |
commit | ad876ccaae99f12bf2379f7bbe0b060f307c5f35 (patch) | |
tree | 1dc7a7794ef68afa5d0f4f3d64f20963e6e7c680 /lib/libcrypto | |
parent | 89d51d726eaeb50e13543b177edd6ef547da38ee (diff) |
include <sys/types.h> to get <sys/cdefs.h> instead (for __warn_references)
corrected by deraadt@ / guenther@
Diffstat (limited to 'lib/libcrypto')
-rw-r--r-- | lib/libcrypto/evp/evp_enc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcrypto/evp/evp_enc.c b/lib/libcrypto/evp/evp_enc.c index 7aa505312a3..f0b2639f601 100644 --- a/lib/libcrypto/evp/evp_enc.c +++ b/lib/libcrypto/evp/evp_enc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: evp_enc.c,v 1.33 2016/09/04 12:20:06 bcook Exp $ */ +/* $OpenBSD: evp_enc.c,v 1.34 2016/09/04 12:35:23 bcook Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -60,7 +60,7 @@ #include <stdlib.h> #include <string.h> -#include <sys/cdefs.h> +#include <sys/types.h> #include <openssl/opensslconf.h> |