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