]> git.proxmox.com Git - wasi-libc.git/blob - libc-top-half/musl/src/unistd/setgid.c
WASI libc prototype implementation.
[wasi-libc.git] / libc-top-half / musl / src / unistd / setgid.c
1 #include <unistd.h>
2 #include "syscall.h"
3 #include "libc.h"
4
5 int setgid(gid_t gid)
6 {
7 return __setxid(SYS_setgid, gid, 0, 0);
8 }