CLOSE(2) — UNIX 3.0
NAME
close − close a file descriptor
SYNOPSIS
int close (fildes)
int fildes;
DESCRIPTION
Fildes is a file descriptor obtained from a creat, open, dup, fcntl, or pipe system call. Close closes the file descriptor indicated by fildes.
Close will fail if fildes is not a valid open file descriptor. [EBADF]
RETURN VALUE
Upon successful completion, a value of 0 is returned. Otherwise, a value of −1 is returned and errno is set to indicate the error.
SEE ALSO
creat(2), dup(2), exec(2), fcntl(2), open(2), pipe(2).
May 16, 1980