]> git.ipfire.org Git - thirdparty/man-pages.git/blobdiff - man2/llseek.2
man*/: srcfix (Use .P instead of .PP or .LP)
[thirdparty/man-pages.git] / man2 / llseek.2
index d317ed1e1a1fc13360abde05decf862138355d4a..1a3f365f2019e30d9f4e617245668b9f34d7ddf3 100644 (file)
@@ -16,12 +16,12 @@ Standard C library
 .nf
 .BR "#include <sys/syscall.h>" "      /* Definition of " SYS_* " constants */"
 .B #include <unistd.h>
-.PP
+.P
 .BI "int syscall(SYS__llseek, unsigned int " fd ", unsigned long " offset_high ,
 .BI "            unsigned long " offset_low ", loff_t *" result ,
 .BI "            unsigned int " whence );
 .fi
-.PP
+.P
 .IR Note :
 glibc provides no wrapper for
 .BR _llseek (),
@@ -32,7 +32,7 @@ Note: for information about the
 .BR llseek (3)
 library function, see
 .BR lseek64 (3).
-.PP
+.P
 The
 .BR _llseek ()
 system call repositions the offset of the open file description associated
@@ -41,7 +41,7 @@ with the file descriptor
 to the value
 .IP
 (offset_high << 32) | offset_low
-.PP
+.P
 This new offset is a byte offset
 relative to the beginning of the file, the current file offset,
 or the end of the file, depending on whether
@@ -52,13 +52,13 @@ is
 or
 .BR SEEK_END ,
 respectively.
-.PP
+.P
 The new file offset is returned in the argument
 .IR result .
 The  type
 .I loff_t
 is a 64-bit signed type.
-.PP
+.P
 This system call exists on various 32-bit platforms to support
 seeking to large file offsets.
 .SH RETURN VALUE