Fixed a bogus include path.

Removed a bogus include.

Added prototypes.
This commit is contained in:
Bruce Evans 1995-11-18 08:21:15 +00:00
parent c5d1682b14
commit 6b88228fc4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=12361

View File

@ -20,7 +20,7 @@
#include "cx.h"
#if NCX > 0
#include <bpfilter.h>
#include "bpfilter.h"
#include <sys/param.h>
#include <sys/systm.h>
@ -44,7 +44,6 @@
# if __FreeBSD__ < 2
# include <machine/pio.h>
# else
# include <machine/cpufunc.h>
# include <sys/devconf.h>
# endif
# define init_func_t void(*)(int)
@ -79,6 +78,14 @@ struct cxsoftc {
#include <machine/cronyx.h>
#include <i386/isa/cxreg.h>
extern int cxprobe __P((struct isa_device *id));
extern int cxattach __P((struct isa_device *id));
extern void cxput __P((cx_chan_t *c, char b));
extern void cxsend __P((cx_chan_t *c));
extern void cxrinth __P((cx_chan_t *c));
extern int cxtinth __P((cx_chan_t *c));
extern void cxswitch __P((cx_chan_t *c, cx_soft_opt_t new));
#ifdef DEBUG
# define print(s) printf s
#else