diff options
Diffstat (limited to 'libc/string/generic/mempcpy.c')
-rw-r--r-- | libc/string/generic/mempcpy.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libc/string/generic/mempcpy.c b/libc/string/generic/mempcpy.c index f2c860107..d121967cd 100644 --- a/libc/string/generic/mempcpy.c +++ b/libc/string/generic/mempcpy.c @@ -7,8 +7,6 @@ #include <string.h> -#undef mempcpy - void attribute_hidden *__mempcpy (void *dstpp, const void *srcpp, size_t len) { __memcpy(dstpp, srcpp, len); |