Created
January 4, 2019 19:40
-
-
Save therealkenc/fbfdca81f6a02e472cfd90d7027ceadc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // stub-sfr.c | |
| #define _GNU_SOURCE /* See feature_test_macros(7) */ | |
| #include <fcntl.h> | |
| int sync_file_range(int fd, off64_t offset, off64_t nbytes, | |
| unsigned int flags) | |
| { | |
| return 0; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment