close method

int close(
  1. int fd
)

Close a file descriptor.

Implementation

int close(int fd) {
  return -1;
}