musl/src/fcntl/posix_fallocate.c
Rich Felker 5271ff46b9 fix broken fallocate syscall in posix_fallocate
the syscall takes an extra flag argument which should be zero to meet
the POSIX requirements.
2012-09-08 00:26:46 -04:00

9 lines
183 B
C

#include <fcntl.h>
#include "syscall.h"
int posix_fallocate(int fd, off_t base, off_t len)
{
return -__syscall(SYS_fallocate, fd, 0, __SYSCALL_LL_E(base),
__SYSCALL_LL_E(len));
}