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