diff options
| author | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-08-30 10:43:36 +0000 |
|---|---|---|
| committer | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-08-30 10:43:36 +0000 |
| commit | 77a45dc9ed7644c8d997310f3ab32009beeb3f51 (patch) | |
| tree | 63f9d7ebe6ad2b2352e6a9529305a0a9e143b65b /ext/digest/md5 | |
| parent | 01d8c2c472b0a5d9ebefb31011e6980b517756b8 (diff) | |
| download | ruby-77a45dc9ed7644c8d997310f3ab32009beeb3f51.tar.gz ruby-77a45dc9ed7644c8d997310f3ab32009beeb3f51.tar.xz ruby-77a45dc9ed7644c8d997310f3ab32009beeb3f51.zip | |
* ext/digest/md5/md5ossl.h, ext/digest/rmd160/rmd160ossl.h,
ext/digest/sha1/sha1ossl.h: include <stddef.h> to avoid
error in compilation with OpenSSL-0.9.8. [ruby-list:41068]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9049 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/digest/md5')
| -rw-r--r-- | ext/digest/md5/md5ossl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/digest/md5/md5ossl.h b/ext/digest/md5/md5ossl.h index dda7c743e..610f58db0 100644 --- a/ext/digest/md5/md5ossl.h +++ b/ext/digest/md5/md5ossl.h @@ -3,6 +3,7 @@ #ifndef MD5OSSL_H_INCLUDED #define MD5OSSL_H_INCLUDED +#include <stddef.h> #include <openssl/md5.h> void MD5_End(MD5_CTX *pctx, unsigned char *hexdigest); |
