diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2019-08-11 10:50:24 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2019-08-11 10:50:24 +0000 |
commit | ec822540113fed1bdf3e40c748000ad98826a007 (patch) | |
tree | 6c3c39a3c6483f324d13649c0aedff7ba73709e1 /lib/libcrypto/cms/cms_ess.c | |
parent | 9d9dfd5d5a8ae3880ff39e5c97a042aef1f2db06 (diff) |
Include string.h for memcmp()/memcpy().
Diffstat (limited to 'lib/libcrypto/cms/cms_ess.c')
-rw-r--r-- | lib/libcrypto/cms/cms_ess.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libcrypto/cms/cms_ess.c b/lib/libcrypto/cms/cms_ess.c index d488297c875..c460ba86e20 100644 --- a/lib/libcrypto/cms/cms_ess.c +++ b/lib/libcrypto/cms/cms_ess.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cms_ess.c,v 1.17 2019/08/11 10:41:49 jsing Exp $ */ +/* $OpenBSD: cms_ess.c,v 1.18 2019/08/11 10:50:23 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> |