change uid_t, gid_t, and id_t to unsigned types
[musl] / src / linux / syncfs.c
1 #define _GNU_SOURCE
2 #include <unistd.h>
3 #include "syscall.h"
4
5 void syncfs(int fd)
6 {
7         __syscall(SYS_syncfs, fd);
8 }