move msghdr and cmsghdr out of bits/socket.h
[musl.git] / src / linux / syncfs.c
blobbc7d301e5178906ea2d7afc0e50e7b93f12255a9
1 #define _GNU_SOURCE
2 #include <unistd.h>
3 #include "syscall.h"
5 int syncfs(int fd)
7 return syscall(SYS_syncfs, fd);