diff options
author | Brent Cook <bcook@cvs.openbsd.org> | 2016-09-04 12:20:07 +0000 |
---|---|---|
committer | Brent Cook <bcook@cvs.openbsd.org> | 2016-09-04 12:20:07 +0000 |
commit | b7c49ff4fa84db1a85dff35590381a345191fc53 (patch) | |
tree | 0f019d6fb0090d8dede51ddd95bc4b98f17d9ac9 /lib/libcrypto/evp | |
parent | 20f6f519527c700e8bfe57e852f1bf360adaad60 (diff) |
include <sys/cdefs.h> for portable
Diffstat (limited to 'lib/libcrypto/evp')
-rw-r--r-- | lib/libcrypto/evp/evp_enc.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libcrypto/evp/evp_enc.c b/lib/libcrypto/evp/evp_enc.c index 5f710347ae1..7aa505312a3 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.32 2016/09/02 15:36:38 bcook Exp $ */ +/* $OpenBSD: evp_enc.c,v 1.33 2016/09/04 12:20:06 bcook Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -60,6 +60,8 @@ #include <stdlib.h> #include <string.h> +#include <sys/cdefs.h> + #include <openssl/opensslconf.h> #include <openssl/err.h> |