diff options
author | Rich Felker <dalias@aerifal.cx> | 2014-01-06 21:31:17 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2014-01-06 21:31:17 -0500 |
commit | 1e7a581ad6e2b03e91748dd1295288e053f86e04 (patch) | |
tree | 5e49edab89b4f0e90d862a3c48d780c24575e163 /include | |
parent | b589fb4e2999026494fa4bced90aeca9e613f754 (diff) | |
download | musl-1e7a581ad6e2b03e91748dd1295288e053f86e04.tar.gz musl-1e7a581ad6e2b03e91748dd1295288e053f86e04.tar.xz musl-1e7a581ad6e2b03e91748dd1295288e053f86e04.zip |
add some missing LFS64 aliases for fadvise/fallocate functions
Diffstat (limited to 'include')
-rw-r--r-- | include/fcntl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/fcntl.h b/include/fcntl.h index 55a89f9c..e01a4d19 100644 --- a/include/fcntl.h +++ b/include/fcntl.h @@ -148,6 +148,7 @@ struct f_owner_ex { #define SPLICE_F_MORE 4 #define SPLICE_F_GIFT 8 int fallocate(int, int, off_t, off_t); +#define fallocate64 fallocate ssize_t readahead(int, off_t, size_t); int sync_file_range(int, off_t, off_t, unsigned); ssize_t vmsplice(int, const struct iovec *, size_t, unsigned); |