fcntl method

int fcntl(
  1. int __fd,
  2. int __cmd
)

Implementation

int fcntl(
  int __fd,
  int __cmd,
) {
  return _fcntl(
    __fd,
    __cmd,
  );
}