diff options
Diffstat (limited to 'libc/string/powerpc/memset.c')
-rw-r--r-- | libc/string/powerpc/memset.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/string/powerpc/memset.c b/libc/string/powerpc/memset.c index c5903afa6..372047797 100644 --- a/libc/string/powerpc/memset.c +++ b/libc/string/powerpc/memset.c @@ -31,6 +31,8 @@ static inline int expand_byte_word(int c){ : "=r" (c) : "0" (c)); return c; } + +#undef memset void attribute_hidden *__memset(void *to, int c, size_t n) { unsigned long rem, chunks; |