summaryrefslogtreecommitdiffstats
path: root/libc-top-half/musl/src/linux/fallocate.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc-top-half/musl/src/linux/fallocate.c')
-rw-r--r--libc-top-half/musl/src/linux/fallocate.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/linux/fallocate.c b/libc-top-half/musl/src/linux/fallocate.c
new file mode 100644
index 0000000..7d68bc8
--- /dev/null
+++ b/libc-top-half/musl/src/linux/fallocate.c
@@ -0,0 +1,12 @@
+#define _GNU_SOURCE
+#include <fcntl.h>
+#include "syscall.h"
+
+int fallocate(int fd, int mode, off_t base, off_t len)
+{
+ return syscall(SYS_fallocate, fd, mode, __SYSCALL_LL_E(base),
+ __SYSCALL_LL_E(len));
+}
+
+#undef fallocate64
+weak_alias(fallocate, fallocate64);