diff options
Diffstat (limited to 'string/mempcpy.c')
-rw-r--r-- | string/mempcpy.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/string/mempcpy.c b/string/mempcpy.c index c0d2448205..a626c9cc60 100644 --- a/string/mempcpy.c +++ b/string/mempcpy.c @@ -24,8 +24,12 @@ #undef mempcpy #undef __mempcpy +#ifndef MEMPCPY +# define MEMPCPY __mempcpy +#endif + void * -__mempcpy (void *dest, const void *src, size_t len) +MEMPCPY (void *dest, const void *src, size_t len) { return memcpy (dest, src, len) + len; } |