diff options
Diffstat (limited to 'libc/string/mempcpy.c')
-rw-r--r-- | libc/string/mempcpy.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libc/string/mempcpy.c b/libc/string/mempcpy.c index 70626f24a..cf4af8d39 100644 --- a/libc/string/mempcpy.c +++ b/libc/string/mempcpy.c @@ -7,6 +7,8 @@ #include "_string.h" +#ifdef __USE_GNU + #ifdef WANT_WIDE # define Wmempcpy wmempcpy #else @@ -35,3 +37,4 @@ Wvoid *Wmempcpy(Wvoid * __restrict s1, const Wvoid * __restrict s2, size_t n) } libc_hidden_def(Wmempcpy) +#endif |