posix_fallocate method

int posix_fallocate(
  1. int __fd,
  2. int __offset,
  3. int __len
)

Implementation

int posix_fallocate(
  int __fd,
  int __offset,
  int __len,
) {
  return _posix_fallocate(
    __fd,
    __offset,
    __len,
  );
}