diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-12-17 22:17:17 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-12-17 22:17:17 +0000 |
commit | 44a23c1a2a0b503d1bf9cc14ada36b78854cea8a (patch) | |
tree | 242bd1145cc19128796fc07acfe5de54ecba44a6 | |
parent | 7e832b08e43f5d8047508c7d4f7ae7fae1e61f1d (diff) |
fix for build failures resulting from "string ops for i386" change
-rw-r--r-- | libc/string/memcpy.c | 1 | ||||
-rw-r--r-- | libc/string/memset.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/libc/string/memcpy.c b/libc/string/memcpy.c index aa8d4ee38..cbb6e633a 100644 --- a/libc/string/memcpy.c +++ b/libc/string/memcpy.c @@ -10,6 +10,7 @@ #ifdef WANT_WIDE # define Wmemcpy wmemcpy #else +# undef memcpy # define Wmemcpy memcpy #endif diff --git a/libc/string/memset.c b/libc/string/memset.c index 6dd20d668..9daf59f69 100644 --- a/libc/string/memset.c +++ b/libc/string/memset.c @@ -10,7 +10,7 @@ #ifdef WANT_WIDE # define Wmemset wmemset #else -/* Experimentally off - libc_hidden_proto(memset) */ +# undef memset # define Wmemset memset #endif |