From 41c15785a9b620a8c85944649c20cca853f40e84 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Wed, 17 Dec 2008 01:36:31 +0000 Subject: 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. --- libc/string/i386/memset.c | 1 + 1 file changed, 1 insertion(+) (limited to 'libc/string/i386/memset.c') diff --git a/libc/string/i386/memset.c b/libc/string/i386/memset.c index bbaa45215..cfc16983c 100644 --- a/libc/string/i386/memset.c +++ b/libc/string/i386/memset.c @@ -33,6 +33,7 @@ #include /* Experimentally off - libc_hidden_proto(memset) */ +#undef memset void *memset(void *s, int c, size_t count) { int d0, d1; -- cgit v1.2.3