fdatasync.c 79 B

1234567
  1. #include <unistd.h>
  2. #include "syscall.h"
  3. int fdatasync(int fd)
  4. {
  5. return 0;
  6. }