mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 09:24:57 +00:00
LibC: Add POSIX spec comments for qsort
This commit is contained in:
parent
e9c46a23c8
commit
6db9b6cf79
1 changed files with 1 additions and 0 deletions
|
@ -59,6 +59,7 @@ private:
|
|||
size_t m_element_size;
|
||||
};
|
||||
|
||||
// https://pubs.opengroup.org/onlinepubs/9699919799/functions/qsort.html
|
||||
void qsort(void* bot, size_t nmemb, size_t size, int (*compar)(const void*, const void*))
|
||||
{
|
||||
if (nmemb <= 1) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue