summaryrefslogtreecommitdiff
path: root/libc/string/stpcpy.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-12-17 01:36:31 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-12-17 01:36:31 +0000
commit41c15785a9b620a8c85944649c20cca853f40e84 (patch)
tree2676af638efdebba3a9e9b0cf2aa0eab1ec54819 /libc/string/stpcpy.c
parent3d21a36bcd1441e88529eb990d0f9d8ac41a2a4d (diff)
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/stpcpy.c')
-rw-r--r--libc/string/stpcpy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/string/stpcpy.c b/libc/string/stpcpy.c
index 8a487584e..58ace8fc7 100644
--- a/libc/string/stpcpy.c
+++ b/libc/string/stpcpy.c
@@ -10,7 +10,7 @@
#ifdef WANT_WIDE
# define Wstpcpy wcpcpy
#else
-/* Experimentally off - libc_hidden_proto(stpcpy) */
+# undef stpcpy
# define Wstpcpy stpcpy
#endif