summaryrefslogtreecommitdiff
path: root/sys/kern/sys_socket.c
diff options
context:
space:
mode:
authorMark Newton <newton@FreeBSD.org>1999-02-01 13:24:39 +0000
committerMark Newton <newton@FreeBSD.org>1999-02-01 13:24:39 +0000
commitc4ca2670b816b59e9734edda475a65e610f5e922 (patch)
treefe5e983ca0f1a9492ef8509a07cbf9cbdfd74ef4 /sys/kern/sys_socket.c
parent895259716ebbd86425f439777b555a2b9ac5a0ec (diff)
Notes
Diffstat (limited to 'sys/kern/sys_socket.c')
-rw-r--r--sys/kern/sys_socket.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/sys/kern/sys_socket.c b/sys/kern/sys_socket.c
index b07f8e278570..8392110359e5 100644
--- a/sys/kern/sys_socket.c
+++ b/sys/kern/sys_socket.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)sys_socket.c 8.1 (Berkeley) 6/10/93
- * $Id: sys_socket.c,v 1.20 1999/01/30 06:25:00 newton Exp $
+ * $Id: sys_socket.c,v 1.21 1999/01/31 03:15:13 newton Exp $
*/
#include <sys/param.h>
@@ -50,10 +50,8 @@
#include <net/route.h>
/* soo_{read,write,close} non-static for SysVR4 "streams" pseudo-device */
-int soo_read __P((struct file *fp, struct uio *uio,
- struct ucred *cred));
-int soo_write __P((struct file *fp, struct uio *uio,
- struct ucred *cred));
+int soo_read __P((struct file *fp, struct uio *uio, struct ucred *cred));
+int soo_write __P((struct file *fp, struct uio *uio, struct ucred *cred));
int soo_close __P((struct file *fp, struct proc *p));
struct fileops socketops =