math: fix exp.s on i386 and x86_64 so the exception flags are correct
[musl] / 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 }