fsync.c 114 B

12345678910
  1. #include <sys/types.h>
  2. #include <unistd.h>
  3. #include <errno.h>
  4. int
  5. fsync(int fd)
  6. {
  7. errno = EINVAL;
  8. return -1;
  9. }