diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2019-08-11 11:07:41 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2019-08-11 11:07:41 +0000 |
commit | 3da99533ec58c1c2ecb979400f977da5f61140b8 (patch) | |
tree | 247c5e3566957e34190db38aa56552bd4a5d4cab /lib/libcrypto/cms/cms_env.c | |
parent | a2e95b793494a19d5a13a759109cba2d125e49f8 (diff) |
Include string.h for explicit_bzero().
Diffstat (limited to 'lib/libcrypto/cms/cms_env.c')
-rw-r--r-- | lib/libcrypto/cms/cms_env.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libcrypto/cms/cms_env.c b/lib/libcrypto/cms/cms_env.c index 4f1a0b14458..8640f459fbd 100644 --- a/lib/libcrypto/cms/cms_env.c +++ b/lib/libcrypto/cms/cms_env.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cms_env.c,v 1.21 2019/08/11 11:04:18 jsing Exp $ */ +/* $OpenBSD: cms_env.c,v 1.22 2019/08/11 11:07:40 jsing Exp $ */ /* * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project. @@ -52,6 +52,8 @@ * ==================================================================== */ +#include <string.h> + #include "cryptlib.h" #include <openssl/asn1t.h> #include <openssl/pem.h> |