ClickHouse/base/glibc-compatibility/musl/fallocate.c
2020-02-14 17:48:30 +03:00

11 lines
235 B
C

#define _GNU_SOURCE
#include <fcntl.h>
#include <sys/syscall.h>
extern long int syscall (long int __sysno, ...) __THROW;
int fallocate(int fd, int mode, off_t base, off_t len)
{
return syscall(SYS_fallocate, fd, mode, base, len);
}