diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-12-17 01:36:31 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-12-17 01:36:31 +0000 |
commit | 41c15785a9b620a8c85944649c20cca853f40e84 (patch) | |
tree | 2676af638efdebba3a9e9b0cf2aa0eab1ec54819 /libc/string/mempcpy.c | |
parent | 3d21a36bcd1441e88529eb990d0f9d8ac41a2a4d (diff) | |
download | uClibc-alpine-41c15785a9b620a8c85944649c20cca853f40e84.tar.bz2 uClibc-alpine-41c15785a9b620a8c85944649c20cca853f40e84.tar.xz |
since gcc -Os hates us and does not inline string ops,
implement inline versions of some of them.
Enable only those which result roughly in the same
code size as using out-or-line versions.
None of this affects users, installed headers won't have
any trace of it.
Diffstat (limited to 'libc/string/mempcpy.c')
-rw-r--r-- | libc/string/mempcpy.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/string/mempcpy.c b/libc/string/mempcpy.c index e7605146a..d79bd1937 100644 --- a/libc/string/mempcpy.c +++ b/libc/string/mempcpy.c @@ -12,6 +12,7 @@ #ifdef WANT_WIDE # define Wmempcpy wmempcpy #else +# undef mempcpy # define Wmempcpy mempcpy #endif |