diff options
author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-02-20 06:49:00 +0000 |
---|---|---|
committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-02-20 06:49:00 +0000 |
commit | db0539c4479eb7c6a1848e606ed570d0c48dc607 (patch) | |
tree | b37d89adad8c16a4fbaea415792f6044f603830e /missing.h | |
parent | 2e13a4ff3770b5328936e4f21685f679ae0b6f81 (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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |