lockf method

int lockf(
  1. int __fd,
  2. int __cmd,
  3. int __len
)

Implementation

int lockf(
  int __fd,
  int __cmd,
  int __len,
) {
  return _lockf(
    __fd,
    __cmd,
    __len,
  );
}