diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2011-09-02 13:20:15 +0200 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2011-09-02 13:20:15 +0200 |
commit | 2c1f5ce4b17da4b150a262e525b7444c3e2ceee7 (patch) | |
tree | 5f6496971cc0b88ea7bc21825e7a956b7a6a1361 /crypto/conf/conf_api.c | |
parent | Sync ordinals with 1.0.1-stable. (diff) | |
download | openssl-2c1f5ce4b17da4b150a262e525b7444c3e2ceee7.tar.xz openssl-2c1f5ce4b17da4b150a262e525b7444c3e2ceee7.zip |
PR: 2576
Submitted by: Doug Goldstein <cardoe@gentoo.org>
Reviewed by: steve
Include header file stdlib.h which is needed on some platforms to get
getenv() declaration.
Diffstat (limited to 'crypto/conf/conf_api.c')
-rw-r--r-- | crypto/conf/conf_api.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/conf/conf_api.c b/crypto/conf/conf_api.c index 0c1ee2b738..f5fcbb9f6b 100644 --- a/crypto/conf/conf_api.c +++ b/crypto/conf/conf_api.c @@ -64,6 +64,7 @@ #endif #include <assert.h> +#include <stdlib.h> #include <string.h> #include <openssl/conf.h> #include <openssl/conf_api.h> |