diff options
Diffstat (limited to 'libc/string/generic/memcpy.c')
-rw-r--r-- | libc/string/generic/memcpy.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libc/string/generic/memcpy.c b/libc/string/generic/memcpy.c index 2fb48ebef..6db4d0d44 100644 --- a/libc/string/generic/memcpy.c +++ b/libc/string/generic/memcpy.c @@ -23,8 +23,6 @@ #include "memcopy.h" #include "pagecopy.h" -#undef memcpy - /* _wordcopy_fwd_aligned -- Copy block beginning at SRCP to block beginning at DSTP with LEN `op_t' words (not LEN bytes!). Both SRCP and DSTP should be aligned for memory operations on `op_t's. */ @@ -245,4 +243,4 @@ void attribute_hidden *__memcpy (void *dstpp, const void *srcpp, size_t len) return dstpp; } -strong_alias(__memcpy, memcpy) +strong_alias(__memcpy,memcpy) |