mirror of https://git.musl-libc.org/git/musl
Browse Source
this is equivalent to posix_fallocate except that it has an extra mode/flags argument to control its behavior, and stores the error in errno rather than returning an error code.rs-1.0
2 changed files with 12 additions and 0 deletions
@ -0,0 +1,9 @@ |
|||
#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)); |
|||
} |
|||
Loading…
Reference in new issue