xref: /third_party/musl/src/unistd/fdatasync.c (revision 570af302)
1#include <unistd.h>
2#include "syscall.h"
3#include <unsupported_api.h>
4
5int fdatasync(int fd)
6{
7	UNSUPPORTED_API_VOID(LITEOS_A);
8	return syscall_cp(SYS_fdatasync, fd);
9}
10