diff options
author | phk <phk@FreeBSD.org> | 1994-10-07 07:33:51 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1994-10-07 07:33:51 +0000 |
commit | ee674f1a0d1f2ae8f99f23fd76f0de22b4fc029c (patch) | |
tree | 01d6a0ce79941232f77718354bcb6670e7a93614 | |
parent | 633ef15194ff3db5ad225b6405fb611648e79c5d (diff) | |
download | FreeBSD-src-ee674f1a0d1f2ae8f99f23fd76f0de22b4fc029c.zip FreeBSD-src-ee674f1a0d1f2ae8f99f23fd76f0de22b4fc029c.tar.gz |
Cosmetics. Added four prototypes.
-rw-r--r-- | sys/sys/sysctl.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/sys/sysctl.h b/sys/sys/sysctl.h index de01833..9e5fd6a 100644 --- a/sys/sys/sysctl.h +++ b/sys/sys/sysctl.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)sysctl.h 8.1 (Berkeley) 6/2/93 - * $Id: sysctl.h,v 1.12 1994/09/23 19:07:42 wollman Exp $ + * $Id: sysctl.h,v 1.13 1994/10/02 17:24:58 phk Exp $ */ #ifndef _SYS_SYSCTL_H_ @@ -357,6 +357,11 @@ int sysctl_rdstring __P((void *, size_t *, void *, char *)); int sysctl_rdstruct __P((void *, size_t *, void *, void *, int)); void fill_eproc __P((struct proc *, struct eproc *)); +int sysctl_clockrate __P((char *, size_t*)); +int sysctl_vnode __P((char *, size_t*)); +int sysctl_file __P((char *, size_t*)); +int sysctl_doproc __P((int *, u_int, char *, size_t*)); + #else /* !KERNEL */ #include <sys/cdefs.h> |