summaryrefslogtreecommitdiff
path: root/libgcompat/fcntl.c
blob: 95de2060b32b500db6b782d0dc0fd4c4f48b6ea2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#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);
}