mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 15:42:39 +00:00
11 lines
235 B
C
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);
|
|
}
|