diff options
| author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-11-18 14:34:18 +0000 |
|---|---|---|
| committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-11-18 14:34:18 +0000 |
| commit | 832cbb08fd5f6322d9d9ea161de6b5235833f4dc (patch) | |
| tree | 8966ee89919ced2561844246d5c79d95f6f9e77b /missing.h | |
| parent | bdf2aa72220d041531e51ab49ddc87ab008bee0f (diff) | |
| download | ruby-832cbb08fd5f6322d9d9ea161de6b5235833f4dc.tar.gz ruby-832cbb08fd5f6322d9d9ea161de6b5235833f4dc.tar.xz ruby-832cbb08fd5f6322d9d9ea161de6b5235833f4dc.zip | |
* missing/memmove.c (memmove): take void *, not char *.
* missing.h (memmove): ditto.
* missing.h (strchr, strrchr): return char *, not int.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4983 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'missing.h')
| -rw-r--r-- | missing.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -74,7 +74,7 @@ extern int memcmp _((char *, char *, int)); */ #ifndef HAVE_MEMMOVE -extern char *memmove _((char *, char *, int)); +extern void *memmove _((void *, void *, int)); #endif #ifndef HAVE_MKDIR @@ -96,8 +96,8 @@ extern int strncasecmp _((char *, char *, int)); #endif #ifndef HAVE_STRCHR -extern int strchr _((char *, int)); -extern int strrchr _((char *, int)); +extern char *strchr _((char *, int)); +extern char *strrchr _((char *, int)); #endif #ifndef HAVE_STRERROR |
