diff options
author | Richard Levitte <levitte@openssl.org> | 2003-02-10 11:14:35 +0000 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2003-02-10 11:14:35 +0000 |
commit | 28f573a28dcfba4da90605d17f614c8ecb2243fc (patch) | |
tree | f6af1ecf7398925d25d983f161e7faf21cbad2e5 /crypto/ec | |
parent | e2c9c91b5b4b836fef2839c50eca4fe574242a7f (diff) | |
download | openssl-new-28f573a28dcfba4da90605d17f614c8ecb2243fc.tar.gz |
Make sure memcpy() is properly declared by including string.h.
Diffstat (limited to 'crypto/ec')
-rw-r--r-- | crypto/ec/ec_mult.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/ec/ec_mult.c b/crypto/ec/ec_mult.c index 2ebb2af720..f4e5f90847 100644 --- a/crypto/ec/ec_mult.c +++ b/crypto/ec/ec_mult.c @@ -61,6 +61,8 @@ * and contributed to the OpenSSL project. */ +#include <string.h> + #include <openssl/err.h> #include "ec_lcl.h" |