qsort: add a short comment about the algorithm
[oweals/musl.git] / src / unistd / getgroups.c
1 #include <unistd.h>
2 #include "syscall.h"
3
4 int getgroups(int count, gid_t list[])
5 {
6         return syscall(SYS_getgroups, count, list);
7 }