remove long-obsolete clang workarounds from mips* syscall_arch.h files
[musl.git] / src / linux / fallocate.c
blobae766d5e5fa4e63a547babe811e39efb2e69e2d6
1 #define _GNU_SOURCE
2 #include <fcntl.h>
3 #include "syscall.h"
4 #include "libc.h"
6 int fallocate(int fd, int mode, off_t base, off_t len)
8 return syscall(SYS_fallocate, fd, mode, __SYSCALL_LL_E(base),
9 __SYSCALL_LL_E(len));
12 #undef fallocate64
13 LFS64(fallocate);