diff options
Diffstat (limited to 'libgcompat')
-rw-r--r-- | libgcompat/fcntl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libgcompat/fcntl.c b/libgcompat/fcntl.c index 95de206..9299981 100644 --- a/libgcompat/fcntl.c +++ b/libgcompat/fcntl.c @@ -5,6 +5,7 @@ typedef long long off64_t; /* * posix_fallocate64: gnu-ified 64-bit posix_fallocate */ -int posix_fallocate64(int fd, off64_t offset, off64_t len) { +int posix_fallocate64(int fd, off64_t offset, off64_t len) +{ return posix_fallocate(fd, offset, len); } |