NAME

close - close file (or pipe or socket) handle


SYNOPSIS

close


DESCRIPTION

Close the file. This uses file descriptors such as those obtained by calling POSIX::open.

	$fd = POSIX::open( "foo", &POSIX::O_RDONLY );
	POSIX::close( $fd );

Returns undef on failure.