diff options
Diffstat (limited to 'libc/string/bcopy.c')
-rw-r--r-- | libc/string/bcopy.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libc/string/bcopy.c b/libc/string/bcopy.c index 11c3e8015..bd233cb9c 100644 --- a/libc/string/bcopy.c +++ b/libc/string/bcopy.c @@ -7,6 +7,8 @@ #include "_string.h" +#ifdef __UCLIBC_SUSV3_LEGACY__ + libc_hidden_proto(memmove) void bcopy(const void *s2, void *s1, size_t n) @@ -51,3 +53,4 @@ void bcopy(const void *s2, void *s1, size_t n) #endif #endif } +#endif |