From 44df8ef6bcddb16e54fc0286d5ea7dd4471dff11 Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Sat, 8 Oct 1994 01:45:30 +0000 Subject: [PATCH] Prototypes of today. Brought to you by a 28 minute transit time on BART :-) (For the SF-unaware: I ride the BART (The Bay-area subway) for half an hour each way to work. I use the time to shut up gcc -Wall on my handbook). --- sys/sys/protosw.h | 3 ++- sys/sys/sysctl.h | 7 ++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/sys/sys/protosw.h b/sys/sys/protosw.h index c1045520815..1b1890f5d0a 100644 --- a/sys/sys/protosw.h +++ b/sys/sys/protosw.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)protosw.h 8.1 (Berkeley) 6/2/93 - * $Id: protosw.h,v 1.2 1994/08/02 07:53:22 davidg Exp $ + * $Id: protosw.h,v 1.3 1994/08/21 04:41:56 paul Exp $ */ #ifndef _SYS_PROTOSW_H_ @@ -211,6 +211,7 @@ char *prcorequests[] = { #ifdef KERNEL extern struct protosw *pffindproto(), *pffindtype(); +void pfctlinput __P((int,struct sockaddr *)); #endif #endif diff --git a/sys/sys/sysctl.h b/sys/sys/sysctl.h index 9e5fd6a6936..a990745b275 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.13 1994/10/02 17:24:58 phk Exp $ + * $Id: sysctl.h,v 1.14 1994/10/07 07:33:51 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*)); + int sysctl_clockrate __P((char *, size_t*)); int sysctl_vnode __P((char *, size_t*)); int sysctl_file __P((char *, size_t*));