blob: bc7d301e5178906ea2d7afc0e50e7b93f12255a9 [file] [log] [blame]
#define _GNU_SOURCE
#include <unistd.h>
#include "syscall.h"
int syncfs(int fd)
{
return syscall(SYS_syncfs, fd);
}