mirror of
https://github.com/fluencelabs/musl
synced 2025-06-27 05:32:06 +00:00
add fallocate (nonstandardized) function
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.
This commit is contained in:
9
src/fcntl/fallocate.c
Normal file
9
src/fcntl/fallocate.c
Normal file
@ -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));
|
||||
}
|
Reference in New Issue
Block a user