/* gcc -fPIC -shared never_sync.c -o never_sync.so */ int fsync(int fd) { return 0; } int fdatasync(int fd) { return fsync(fd); }