summaryrefslogtreecommitdiff
path: root/sys/compat/linux/common/linux_socket.c
diff options
context:
space:
mode:
authoraugustss <augustss@NetBSD.org>2000-03-30 11:24:16 +0000
committeraugustss <augustss@NetBSD.org>2000-03-30 11:24:16 +0000
commita82aeb550899106ceb79bb957d4f263e8c4640ba (patch)
tree56efb034577d58a5f5c71ba7044dcf42558bef78 /sys/compat/linux/common/linux_socket.c
parent8c9b24b9caeecd98b2de410f2e6a7021887cd9f8 (diff)
Kill register declarations.
Diffstat (limited to 'sys/compat/linux/common/linux_socket.c')
-rw-r--r--sys/compat/linux/common/linux_socket.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/compat/linux/common/linux_socket.c b/sys/compat/linux/common/linux_socket.c
index 76bcb780024..fcb4a70b97e 100644
--- a/sys/compat/linux/common/linux_socket.c
+++ b/sys/compat/linux/common/linux_socket.c
@@ -1,4 +1,4 @@
-/* $NetBSD: linux_socket.c,v 1.22 2000/01/12 17:19:11 jdolecek Exp $ */
+/* $NetBSD: linux_socket.c,v 1.23 2000/03/30 11:27:18 augustss Exp $ */
/*-
* Copyright (c) 1995, 1998 The NetBSD Foundation, Inc.
@@ -588,8 +588,8 @@ out:
int
linux_ioctl_socket(p, uap, retval)
- register struct proc *p;
- register struct linux_sys_ioctl_args /* {
+ struct proc *p;
+ struct linux_sys_ioctl_args /* {
syscallarg(int) fd;
syscallarg(u_long) com;
syscallarg(caddr_t) data;
@@ -641,13 +641,13 @@ linux_ioctl_socket(p, uap, retval)
int
linux_sys_connect(p, v, retval)
- register struct proc *p;
+ struct proc *p;
void *v;
register_t *retval;
{
int error;
- register struct sys_connect_args /* {
+ struct sys_connect_args /* {
syscallarg(int) s;
syscallarg(const struct sockaddr *) name;
syscallarg(unsigned int) namelen;
@@ -657,7 +657,7 @@ linux_sys_connect(p, v, retval)
if (error == EISCONN) {
struct file *fp;
- register struct socket *so;
+ struct socket *so;
int s, state, prflags;
/* getsock() will use the descriptor for us */