musl - an implementation of the standard library for Linux-based systems
blob: 3895ae530c75de20300c2c5c8961c99d30befb1d (
plain) (
blame)
1
2
3
4
5
6
7
|
#include <unistd.h>
#include "syscall.h"
int fdatasync(int fd)
{
return syscall_cp(SYS_fdatasync, fd);
}
|