diff options
author | Bruce Evans <bde@FreeBSD.org> | 1995-11-11 01:04:42 +0000 |
---|---|---|
committer | Bruce Evans <bde@FreeBSD.org> | 1995-11-11 01:04:42 +0000 |
commit | 2635f86c680f9c65f7b9f4f48009d89f2a1b7cde (patch) | |
tree | 8a470f6fcb3b0e01e1e57fd046da3b28ca19f0e0 /sys/kern/kern_xxx.c | |
parent | ceba6236e0045f673c0037f91cbf013c4fa72481 (diff) |
Notes
Diffstat (limited to 'sys/kern/kern_xxx.c')
-rw-r--r-- | sys/kern/kern_xxx.c | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/sys/kern/kern_xxx.c b/sys/kern/kern_xxx.c index 83d8d5a7b1096..db32e34fdda20 100644 --- a/sys/kern/kern_xxx.c +++ b/sys/kern/kern_xxx.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)kern_xxx.c 8.2 (Berkeley) 11/14/93 - * $Id: kern_xxx.c,v 1.14 1995/09/06 15:23:20 nate Exp $ + * $Id: kern_xxx.c,v 1.15 1995/11/09 20:22:12 phk Exp $ */ #include <sys/param.h> @@ -124,14 +124,14 @@ osethostname(p, uap, retval) uap->hostname, uap->len, 0)); } -struct gethostid_args { +struct ogethostid_args { int dummy; }; /* ARGSUSED */ int ogethostid(p, uap, retval) struct proc *p; - struct gethostid_args *uap; + struct ogethostid_args *uap; int *retval; { @@ -141,14 +141,14 @@ ogethostid(p, uap, retval) #endif /* COMPAT_43 || COMPAT_SUNOS */ #ifdef COMPAT_43 -struct sethostid_args { +struct osethostid_args { long hostid; }; /* ARGSUSED */ int osethostid(p, uap, retval) struct proc *p; - struct sethostid_args *uap; + struct osethostid_args *uap; int *retval; { int error; @@ -160,7 +160,10 @@ osethostid(p, uap, retval) } int -oquota() +oquota(p, uap, retval) + struct proc *p; + struct oquota_args *uap; + int *retval; { return (ENOSYS); |