From 636e2f9bc8d1877db5f0e655bf518dcf7fd4cadc Mon Sep 17 00:00:00 2001 From: knu Date: Mon, 6 Jan 2003 11:47:53 +0000 Subject: * intern.h (rb_check_array_type): Declare rb_check_array_type(). * ext/digest/md5/md5ossl.c: Include stdio.h for sprintf() and string.h for memcmp(). * ext/dl/ptr.c: Include ctype.h for isdigit(). git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3302 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/digest/md5/md5ossl.c | 2 ++ ext/dl/ptr.c | 1 + 2 files changed, 3 insertions(+) (limited to 'ext') diff --git a/ext/digest/md5/md5ossl.c b/ext/digest/md5/md5ossl.c index 3c9f4ba49..d930c7ab5 100644 --- a/ext/digest/md5/md5ossl.c +++ b/ext/digest/md5/md5ossl.c @@ -2,6 +2,8 @@ #include "md5ossl.h" #include +#include +#include void MD5_End(MD5_CTX *pctx, unsigned char *hexdigest) diff --git a/ext/dl/ptr.c b/ext/dl/ptr.c index a1e77ca10..8c2799a2b 100644 --- a/ext/dl/ptr.c +++ b/ext/dl/ptr.c @@ -3,6 +3,7 @@ */ #include +#include #include /* for ruby version code */ #include "dl.h" -- cgit