• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <unistd.h>
2 #include "syscall.h"
3 #include <unsupported_api.h>
4 
fdatasync(int fd)5 int fdatasync(int fd)
6 {
7 	UNSUPPORTED_API_VOID(LITEOS_A);
8 	return syscall_cp(SYS_fdatasync, fd);
9 }
10