From ac3833b17d667c5a943543f20639c2050f3a44cf Mon Sep 17 00:00:00 2001 From: Zachary Lebold Date: Mon, 7 Mar 2016 02:22:11 -0500 Subject: [PATCH] Update close.html Fix references to file descriptor as file handle. --- man/syscall/close.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/man/syscall/close.html b/man/syscall/close.html index 9f16429..b852d54 100644 --- a/man/syscall/close.html +++ b/man/syscall/close.html @@ -55,8 +55,8 @@ Standard C Library (libc, -lc)

Description

-The file handle fd is closed. The same file handle may then -be returned again from open, +The file handle identified by file descriptor fd is closed. +The same file handle may then be returned again from open, dup2, pipe, or similar calls.

@@ -87,7 +87,7 @@ mentioned here. - +
  EBADFfd is not a valid file handle.
fd is not a valid file descriptor.
EIO A hard I/O error occurred.