Remove public declarations of variables that were forgotten when they were

made static.
This commit is contained in:
David E. O'Brien 2005-08-10 07:10:02 +00:00
parent cec9a4bf57
commit c11ba30c9a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=148920
8 changed files with 0 additions and 11 deletions

View File

@ -218,7 +218,6 @@ enum upd7210_rreg {
#define ADR1_EOI (1 << 7) /* End or Identify */
/* Stuff from software drivers */
extern struct cdevsw gpib_l_cdevsw;
extern struct cdevsw gpib_ib_cdevsw;
/* Stuff from upd7210.c */

View File

@ -36,8 +36,6 @@ struct iicbus_softc {
* 0 if no start condition succeeded */
};
extern devclass_t iicbus_devclass;
extern int iicbus_generic_intr(device_t dev, int event, char *buf);
#endif

View File

@ -34,8 +34,6 @@ struct smbus_softc {
device_t owner; /* smbus owner device structure */
};
extern devclass_t smbus_devclass;
extern void smbus_generic_intr(device_t dev, u_char devaddr, char low, char high);
#endif

View File

@ -135,7 +135,6 @@ extern int (*union_dircheckp)(struct thread *, struct vnode **,
#define UDEBUG_ENABLED 1
extern struct vop_vector union_vnodeops;
extern struct vfsops union_vfsops;
extern int uniondebug;
#endif /* _KERNEL */

View File

@ -71,7 +71,6 @@ struct pimstat {
}
#ifdef _KERNEL
extern struct pimstat pimstat;
void pim_input(struct mbuf *, int);
SYSCTL_DECL(_net_inet_pim);

View File

@ -52,8 +52,6 @@ struct pim6stat {
};
#if (defined(KERNEL)) || (defined(_KERNEL))
extern struct pim6stat pim6stat;
int pim6_input __P((struct mbuf **, int*, int));
#endif /* KERNEL */

View File

@ -99,7 +99,6 @@ struct ithd {
extern struct ithd *tty_ithd;
extern struct ithd *clk_ithd;
extern void *net_ih;
extern void *softclock_ih;
extern void *vm_ih;

View File

@ -818,7 +818,6 @@ extern int lastpid;
extern int nprocs, maxproc; /* Current and max number of procs. */
extern int maxprocperuid; /* Max procs per uid. */
extern u_long ps_arg_cache_limit;
extern int sched_quantum; /* Scheduling quantum in ticks. */
LIST_HEAD(proclist, proc);
TAILQ_HEAD(procqueue, proc);