diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 2012-10-11 14:48:32 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@linux-m68k.org> | 2012-10-12 16:54:06 +0200 |
commit | ca38dc17d85b09776a709c8ea7155c414df14073 (patch) | |
tree | 1e5002e92489c76763d4fa955e8aa3f605b966e4 /string | |
parent | ac49ecaf9de65708d8b76a9f025c8c6aa82b4707 (diff) | |
download | glibc-ca38dc17d85b09776a709c8ea7155c414df14073.tar glibc-ca38dc17d85b09776a709c8ea7155c414df14073.tar.gz glibc-ca38dc17d85b09776a709c8ea7155c414df14073.tar.bz2 glibc-ca38dc17d85b09776a709c8ea7155c414df14073.zip |
Avoid PLT references from __get_clockfreq on powerpc
Diffstat (limited to 'string')
-rw-r--r-- | string/memmem.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/string/memmem.c b/string/memmem.c index 625c9cffda..06704cbb7a 100644 --- a/string/memmem.c +++ b/string/memmem.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991,92,93,94,96,97,98,2000,2004,2008 Free Software Foundation, Inc. +/* Copyright (C) 1991-2012 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -73,5 +73,6 @@ memmem (const void *haystack_start, size_t haystack_len, else return two_way_long_needle (haystack, haystack_len, needle, needle_len); } +libc_hidden_def (memmem) #undef LONG_NEEDLE_THRESHOLD |