diff options
author | Doug Hogan <[email protected]> | 2019-01-12 16:53:39 -0800 |
---|---|---|
committer | Doug Hogan <[email protected]> | 2019-01-12 16:53:39 -0800 |
commit | c91aecddbd0b1d0aac889da5cf4f8aed8d75637c (patch) | |
tree | b20aa82c70114b8feda181ff536514aaaf61a708 | |
parent | 9bd2429c7e847d9767cec58707e6fba5f7ced767 (diff) | |
download | otp-c91aecddbd0b1d0aac889da5cf4f8aed8d75637c.tar.gz otp-c91aecddbd0b1d0aac889da5cf4f8aed8d75637c.tar.bz2 otp-c91aecddbd0b1d0aac889da5cf4f8aed8d75637c.zip |
Also include stdint for code that doesn't pull in common.h
-rw-r--r-- | lib/crypto/c_src/crypto_callback.c | 1 | ||||
-rw-r--r-- | lib/crypto/c_src/otp_test_engine.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/lib/crypto/c_src/crypto_callback.c b/lib/crypto/c_src/crypto_callback.c index ed5a1a6226..c0ca18e2ce 100644 --- a/lib/crypto/c_src/crypto_callback.c +++ b/lib/crypto/c_src/crypto_callback.c @@ -21,6 +21,7 @@ #include <stdio.h> #include <string.h> #include <openssl/opensslconf.h> +#include <stdint.h> #include <erl_nif.h> #include "crypto_callback.h" diff --git a/lib/crypto/c_src/otp_test_engine.c b/lib/crypto/c_src/otp_test_engine.c index 4557eaa877..fdc60f3bbc 100644 --- a/lib/crypto/c_src/otp_test_engine.c +++ b/lib/crypto/c_src/otp_test_engine.c @@ -25,6 +25,7 @@ #include <stdio.h> #include <string.h> #include <limits.h> +#include <stdint.h> #include <openssl/md5.h> #include <openssl/rsa.h> |