Fix types for 2 and 4 arguments in splice prototype.

This commit is contained in:
Michael Kerrisk 2008-01-31 10:49:03 +00:00
parent f867dcc700
commit c4aae9a738
1 changed files with 3 additions and 3 deletions

View File

@ -23,7 +23,7 @@
.\" Formatted or processed versions of this manual, if unaccompanied by
.\" the source, must acknowledge the copyright and authors of this work.
.\"
.TH SPLICE 2 2006-04-28 "Linux" "Linux Programmer's Manual"
.TH SPLICE 2 2007-01-31 "Linux" "Linux Programmer's Manual"
.SH NAME
splice \- splice data to/from a pipe
.SH SYNOPSIS
@ -31,8 +31,8 @@ splice \- splice data to/from a pipe
.B #define _GNU_SOURCE
.B #include <fcntl.h>
.BI "long splice(int " fd_in ", off_t *" off_in ", int " fd_out ,
.BI " off_t *" off_out ", size_t " len \
.BI "long splice(int " fd_in ", loff_t *" off_in ", int " fd_out ,
.BI " loff_t *" off_out ", size_t " len \
", unsigned int " flags );
.fi
.SH DESCRIPTION