lseek method

int lseek(
  1. int __fd,
  2. int __offset,
  3. int __whence
)

Implementation

int lseek(
  int __fd,
  int __offset,
  int __whence,
) {
  return _lseek(
    __fd,
    __offset,
    __whence,
  );
}