blob: 92999816827d1302531dededdbe92972cf42a896 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#include <fcntl.h> /* posix_fallocate */
typedef long long off64_t;
/*
* posix_fallocate64: gnu-ified 64-bit posix_fallocate
*/
int posix_fallocate64(int fd, off64_t offset, off64_t len)
{
return posix_fallocate(fd, offset, len);
}
|