summaryrefslogtreecommitdiffstats
path: root/sys/arch/sparc/dev/scf.c
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2002-03-14 01:26:25 +0000
committermillert <millert@openbsd.org>2002-03-14 01:26:25 +0000
commitc4071fd13883b3f74b90a411bbb39755a785aeaa (patch)
tree241e7c760222fac909b512d36156c6db1b610256 /sys/arch/sparc/dev/scf.c
parentcompare pointers with NULL not 0 (diff)
downloadwireguard-openbsd-c4071fd13883b3f74b90a411bbb39755a785aeaa.tar.xz
wireguard-openbsd-c4071fd13883b3f74b90a411bbb39755a785aeaa.zip
First round of __P removal in sys
Diffstat (limited to 'sys/arch/sparc/dev/scf.c')
-rw-r--r--sys/arch/sparc/dev/scf.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/arch/sparc/dev/scf.c b/sys/arch/sparc/dev/scf.c
index 3955015fdfc..2b9b08b33c9 100644
--- a/sys/arch/sparc/dev/scf.c
+++ b/sys/arch/sparc/dev/scf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: scf.c,v 1.3 2001/03/24 10:07:20 ho Exp $ */
+/* $OpenBSD: scf.c,v 1.4 2002/03/14 01:26:43 millert Exp $ */
/*
* Copyright (c) 1999 Jason L. Wright (jason@thought.net)
@@ -57,12 +57,12 @@
#include <machine/scfio.h>
#include <sparc/dev/scfreg.h>
-int scfmatch __P((struct device *, void *, void *));
-void scfattach __P((struct device *, struct device *, void *));
+int scfmatch(struct device *, void *, void *);
+void scfattach(struct device *, struct device *, void *);
-int scfopen __P((dev_t, int, int, struct proc *));
-int scfclose __P((dev_t, int, int, struct proc *));
-int scfioctl __P((dev_t, u_long, caddr_t, int, struct proc *));
+int scfopen(dev_t, int, int, struct proc *);
+int scfclose(dev_t, int, int, struct proc *);
+int scfioctl(dev_t, u_long, caddr_t, int, struct proc *);
struct scf_softc {
struct device sc_dv; /* base device */