aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorHans Petter Selasky <hselasky@FreeBSD.org>2023-04-20 16:50:32 +0000
committerHans Petter Selasky <hselasky@FreeBSD.org>2023-04-20 17:16:14 +0000
commitbb8e8e230d94c9522bd9ff95c13dc9f5b1592929 (patch)
treee4f7129f28214731cbaf16558ae4ea345f08661d /include
parent8fe4f8f7a75f3f6d1fc52e31a6d25a112d4644fd (diff)
Diffstat (limited to 'include')
-rw-r--r--include/stdlib.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/include/stdlib.h b/include/stdlib.h
index 3ad28cf68847..730223e7fd77 100644
--- a/include/stdlib.h
+++ b/include/stdlib.h
@@ -107,10 +107,6 @@ void *malloc(size_t) __malloc_like __result_use_check __alloc_size(1);
int mblen(const char *, size_t);
size_t mbstowcs(wchar_t * __restrict , const char * __restrict, size_t);
int mbtowc(wchar_t * __restrict, const char * __restrict, size_t);
-#if __BSD_VISIBLE
-void bsort(void *, size_t, size_t,
- int (* _Nonnull)(const void *, const void *));
-#endif
void qsort(void *, size_t, size_t,
int (* _Nonnull)(const void *, const void *));
int rand(void);
@@ -304,8 +300,6 @@ int heapsort(void *, size_t, size_t,
#ifdef __BLOCKS__
int heapsort_b(void *, size_t, size_t,
int (^ _Nonnull)(const void *, const void *));
-void bsort_b(void *, size_t, size_t,
- int (^ _Nonnull)(const void *, const void *));
void qsort_b(void *, size_t, size_t,
int (^ _Nonnull)(const void *, const void *));
#endif
@@ -319,8 +313,6 @@ int mkostemps(char *, int, int);
int mkostempsat(int, char *, int, int);
void qsort_r(void *, size_t, size_t,
int (*)(const void *, const void *, void *), void *);
-void bsort_r(void *, size_t, size_t,
- int (*)(const void *, const void *, void *), void *);
int radixsort(const unsigned char **, int, const unsigned char *,
unsigned);
void *reallocarray(void *, size_t, size_t) __result_use_check
@@ -403,11 +395,6 @@ void ignore_handler_s(const char * __restrict, void * __restrict, errno_t);
/* K.3.6.3.2 */
errno_t qsort_s(void *, rsize_t, rsize_t,
int (*)(const void *, const void *, void *), void *);
-
-#if __BSD_VISIBLE
-errno_t bsort_s(void *, rsize_t, rsize_t,
- int (*)(const void *, const void *, void *), void *);
-#endif /* __BSD_VISIBLE */
#endif /* __EXT1_VISIBLE */
__END_DECLS