From a82aeb550899106ceb79bb957d4f263e8c4640ba Mon Sep 17 00:00:00 2001 From: augustss Date: Thu, 30 Mar 2000 11:24:16 +0000 Subject: Kill register declarations. --- sys/compat/linux/common/linux_socket.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'sys/compat/linux/common/linux_socket.c') 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 */ -- cgit