summaryrefslogtreecommitdiff
path: root/libc/string/generic
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-05-30 09:36:10 +0000
committerMike Frysinger <vapier@gentoo.org>2006-05-30 09:36:10 +0000
commit497654c7103fa4a1dcdb91c51c5a5fa5b2f92b93 (patch)
treeb526e1d47c9bec3d278674bad3da1c13f3a944d5 /libc/string/generic
parent4fcc031a7085a47b9a027a20a919574f8aab0768 (diff)
Qunying Pan writes: Make strncmp weak hidden to fix link failures in building gdb and binutils statically
Diffstat (limited to 'libc/string/generic')
-rw-r--r--libc/string/generic/strncmp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/string/generic/strncmp.c b/libc/string/generic/strncmp.c
index 4c1978439..12e0e4d17 100644
--- a/libc/string/generic/strncmp.c
+++ b/libc/string/generic/strncmp.c
@@ -65,4 +65,4 @@ int strncmp (const char *s1, const char *s2, size_t n)
return c1 - c2;
}
-libc_hidden_def(strncmp)
+libc_hidden_weak(strncmp)