From 9e65b677d2e62208b3e6d9210ee9161f997aca7c Mon Sep 17 00:00:00 2001 From: eban Date: Thu, 20 Feb 2003 06:49:00 +0000 Subject: * missing.h (strtoul): fix prototype of strtoul. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3511 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- missing.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'missing.h') diff --git a/missing.h b/missing.h index 877ee6bf7..33dff9bac 100644 --- a/missing.h +++ b/missing.h @@ -114,7 +114,7 @@ extern long strtol _((char *, char **, int)); */ #ifndef HAVE_STRTOUL -extern long strtoul _((char *, char **, int)); +extern unsigned long strtoul _((char *, char **, int)); #endif #ifndef HAVE_VSNPRINTF -- cgit