summaryrefslogtreecommitdiff
path: root/libgcompat/fcntl.c
diff options
context:
space:
mode:
Diffstat (limited to 'libgcompat/fcntl.c')
-rw-r--r--libgcompat/fcntl.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/libgcompat/fcntl.c b/libgcompat/fcntl.c
new file mode 100644
index 0000000..95de206
--- /dev/null
+++ b/libgcompat/fcntl.c
@@ -0,0 +1,10 @@
+#include <fcntl.h> /* posix_fallocate */
+
+typedef long long off64_t;
+
+/*
+ * posix_fallocate64: gnu-ified 64-bit posix_fallocate
+*/
+int posix_fallocate64(int fd, off64_t offset, off64_t len) {
+ return posix_fallocate(fd, offset, len);
+}