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/generic | |
parent | 3d21a36bcd1441e88529eb990d0f9d8ac41a2a4d (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/generic')
-rw-r--r-- | libc/string/generic/memchr.c | 4 | ||||
-rw-r--r-- | libc/string/generic/mempcpy.c | 3 |
2 files changed, 2 insertions, 5 deletions
diff --git a/libc/string/generic/memchr.c b/libc/string/generic/memchr.c index 8ea3f539a..d5cd0005e 100644 --- a/libc/string/generic/memchr.c +++ b/libc/string/generic/memchr.c @@ -25,14 +25,12 @@ #include <stdlib.h> #include <limits.h> -/* Experimentally off - libc_hidden_proto(memchr) */ -/* libc_hidden_proto(abort) */ - #include "memcopy.h" #define LONG_MAX_32_BITS 2147483647 /* Search no more than N bytes of S for C. */ +#undef memchr void *memchr (const void * s, int c_in, size_t n) { const unsigned char *char_ptr; diff --git a/libc/string/generic/mempcpy.c b/libc/string/generic/mempcpy.c index 8d7356486..d7fa79ef5 100644 --- a/libc/string/generic/mempcpy.c +++ b/libc/string/generic/mempcpy.c @@ -8,9 +8,8 @@ #include <string.h> #ifdef __USE_GNU -/* Experimentally off - libc_hidden_proto(mempcpy) */ -/* Experimentally off - libc_hidden_proto(memcpy) */ +# undef mempcpy void *mempcpy (void *dstpp, const void *srcpp, size_t len) { memcpy(dstpp, srcpp, len); |