mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +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);
|
||
|
}
|