diff options
author | Doug Hogan <[email protected]> | 2019-01-07 23:55:25 -0800 |
---|---|---|
committer | Doug Hogan <[email protected]> | 2019-01-08 00:08:21 -0800 |
commit | a309fd02f97dbc35eb8b7d3bafdb219a7275f79b (patch) | |
tree | fff10e0899c155e1f415371b72719926119ff866 /lib/crypto/c_src/common.h | |
parent | 0a04504f0eee025f02a405ff951f4ff5dea80345 (diff) | |
download | otp-a309fd02f97dbc35eb8b7d3bafdb219a7275f79b.tar.gz otp-a309fd02f97dbc35eb8b7d3bafdb219a7275f79b.tar.bz2 otp-a309fd02f97dbc35eb8b7d3bafdb219a7275f79b.zip |
Add limits.h to the common header
A number of files will do bounds checking.
Diffstat (limited to 'lib/crypto/c_src/common.h')
-rw-r--r-- | lib/crypto/c_src/common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/crypto/c_src/common.h b/lib/crypto/c_src/common.h index 1259ba1f36..237073c194 100644 --- a/lib/crypto/c_src/common.h +++ b/lib/crypto/c_src/common.h @@ -28,6 +28,7 @@ #include <stdlib.h> #include <stdio.h> #include <string.h> +#include <limits.h> #include <erl_nif.h> #include "openssl_config.h" |