summaryrefslogtreecommitdiffstats
path: root/missing
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-11-18 14:34:18 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-11-18 14:34:18 +0000
commit832cbb08fd5f6322d9d9ea161de6b5235833f4dc (patch)
tree8966ee89919ced2561844246d5c79d95f6f9e77b /missing
parentbdf2aa72220d041531e51ab49ddc87ab008bee0f (diff)
downloadruby-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')
-rw-r--r--missing/memmove.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/missing/memmove.c b/missing/memmove.c
index 7961c5c0e..c9d67d8b4 100644
--- a/missing/memmove.c
+++ b/missing/memmove.c
@@ -1,11 +1,13 @@
/* public domain rewrite of memcmp(3) */
-char *
-memmove (dst, src, n)
- char *dst, *src;
+void *
+memmove (d, s, n)
+ void *d, *s;
int n;
{
- char *ret = dst;
+ char *dst = d;
+ char *src = s;
+ void *ret = dst;
if (src < dst) {
src += n;