posix_fallocate64

Name

posix_fallocate64 -- file space control (Large File Support)

Synopsis

#include <fcntl.h>

int posix_fallocate64(int fd, off64_t offset, off64_t len);

Description

The posix_fallocate64() function is a large file version of posix_fallocate(). It shall behave as posix_fallocate() in POSIX 1003.1-2008 (ISO/IEC 9945-2009), except that the offset and len arguments are off64_t objects rather than off_t.

Return Value

See posix_fallocate().

Errors

See posix_fallocate().