mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* missing/memmove.c (memmove): take void *, not char *.
* missing.h (memmove): ditto. * missing.h (strchr, strrchr): return char *, not int. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4983 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
6874cb465a
commit
fbcac5f129
3 changed files with 17 additions and 7 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue