lseek.2: wfix

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2016-01-26 10:06:41 +01:00
parent 930fa2cd5a
commit e2b89c5c8c
1 changed files with 4 additions and 4 deletions

View File

@ -56,7 +56,7 @@ lseek \- reposition read/write file offset
.SH DESCRIPTION .SH DESCRIPTION
The The
.BR lseek () .BR lseek ()
function repositions the offset of the open file description function repositions the file offset of the open file description
associated with the file descriptor associated with the file descriptor
.I fd .I fd
to the argument to the argument
@ -66,17 +66,17 @@ according to the directive
as follows: as follows:
.TP .TP
.B SEEK_SET .B SEEK_SET
The offset is set to The file offset is set to
.I offset .I offset
bytes. bytes.
.TP .TP
.B SEEK_CUR .B SEEK_CUR
The offset is set to its current location plus The file offset is set to its current location plus
.I offset .I offset
bytes. bytes.
.TP .TP
.B SEEK_END .B SEEK_END
The offset is set to the size of the file plus The file offset is set to the size of the file plus
.I offset .I offset
bytes. bytes.
.PP .PP