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