diff options
author | pfg <pfg@FreeBSD.org> | 2014-09-01 22:25:42 +0000 |
---|---|---|
committer | pfg <pfg@FreeBSD.org> | 2014-09-01 22:25:42 +0000 |
commit | 2eca2e9569ee6972c26ec87b850a2305f2e07c7d (patch) | |
tree | 9992fc46b00839bbad1a3764ae6f2707b4046dec /lib/libc/stdlib | |
parent | 6ddff9839c61d83a44ef8ac6a8592a077480cf0e (diff) | |
download | FreeBSD-src-2eca2e9569ee6972c26ec87b850a2305f2e07c7d.zip FreeBSD-src-2eca2e9569ee6972c26ec87b850a2305f2e07c7d.tar.gz |
Add bsearch_b to the libc map and the stdlib header.
bsearch_b is the Apple blocks enabled version of bsearch(3).
This was added to libc in Revision 264042 but the commit
missed the declaration required to make use of it.
While here move some other block-related functions to the
BSD_VISIBLE block as these are non-standard.
Phabric: D638
Reviewed by: theraven, wollman
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r-- | lib/libc/stdlib/Symbol.map | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libc/stdlib/Symbol.map b/lib/libc/stdlib/Symbol.map index 64c0e16..8355f9a 100644 --- a/lib/libc/stdlib/Symbol.map +++ b/lib/libc/stdlib/Symbol.map @@ -106,6 +106,7 @@ FBSD_1.3 { FBSD_1.4 { atexit_b; + bsearch_b; heapsort_b; mergesort_b; qsort_b; |