summaryrefslogtreecommitdiff
path: root/missing.h
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-02-20 06:49:00 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-02-20 06:49:00 +0000
commitdb0539c4479eb7c6a1848e606ed570d0c48dc607 (patch)
treeb37d89adad8c16a4fbaea415792f6044f603830e /missing.h
parent2e13a4ff3770b5328936e4f21685f679ae0b6f81 (diff)
* missing.h (strtoul): fix prototype of strtoul.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3511 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'missing.h')
-rw-r--r--missing.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/missing.h b/missing.h
index 877ee6bf7e..33dff9bacc 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