diff options
author | Pixel <pixel@nobis-crew.org> | 2011-02-05 09:40:03 -0800 |
---|---|---|
committer | Pixel <pixel@nobis-crew.org> | 2011-02-05 09:40:03 -0800 |
commit | 4830af498e2d3a5440e65c63a3595b91f1cd4ac9 (patch) | |
tree | 83f7fdea09348a2bf440ebfb79c4716c3b612297 /libc/include | |
parent | afdbb22838d7528b70924232814cb84e25890d83 (diff) |
Added qsort, stolen from libnix.
Diffstat (limited to 'libc/include')
-rw-r--r-- | libc/include/stdlib.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/include/stdlib.h b/libc/include/stdlib.h index 1cfe6c4..5654950 100644 --- a/libc/include/stdlib.h +++ b/libc/include/stdlib.h @@ -9,4 +9,6 @@ typedef void (*atexit_func_t)(void); void exit(int status) __attribute__((noreturn)); int atexit(atexit_func_t); +void qsort(void *base, size_t nel, size_t width, int (*compar)(const void *, const void *)); + #endif |