Skip to content

qsort_r.h: qsort_r() is POSIX now. #138545

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 5, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions libc/src/stdlib/qsort_r.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,9 @@

namespace LIBC_NAMESPACE_DECL {

// This qsort_r uses the glibc argument ordering instead of the BSD argument
// ordering (which puts arg before the function pointer). Putting arg after the
// function pointer more closely matches the ordering for qsort_s, which is the
// standardized equivalent of qsort_r.
// This qsort_r uses the POSIX 1003.1-2024 argument ordering instead of the
// historical BSD argument ordering (which put arg before the function pointer).
// https://www.austingroupbugs.net/view.php?id=900

void qsort_r(void *array, size_t array_size, size_t elem_size,
int (*compare)(const void *, const void *, void *), void *arg);
Expand Down
Loading