blob: 429bd436cd8c7328e7e262a677b3e0c977d5255c [file]
#include <unistd.h>
#include "syscall.h"
int fdatasync(int fd) {
return syscall_cp(SYS_fdatasync, fd);
}