diff options
author | Richard Levitte <levitte@openssl.org> | 2001-02-20 14:41:11 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2001-02-20 14:41:11 +0100 |
commit | a9daa46758d6150e42c925d42807e6ae20182d89 (patch) | |
tree | 80036641292c33fae23ae04be5f4eb9b6678f8bf | |
parent | Fix typo. (diff) | |
download | openssl-a9daa46758d6150e42c925d42807e6ae20182d89.tar.xz openssl-a9daa46758d6150e42c925d42807e6ae20182d89.zip |
Include string.h so mem*() functions get properly declared.
-rw-r--r-- | crypto/asn1/tasn_dec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/asn1/tasn_dec.c b/crypto/asn1/tasn_dec.c index 22e5b4ab52..6b0c248173 100644 --- a/crypto/asn1/tasn_dec.c +++ b/crypto/asn1/tasn_dec.c @@ -58,6 +58,7 @@ #include <stddef.h> +#include <string.h> #include <openssl/asn1.h> #include <openssl/asn1t.h> #include <openssl/objects.h> |