From 568c44f314daaaddc34e72f7db223df8e3b64fbd Mon Sep 17 00:00:00 2001 From: Chris Torek Date: Tue, 17 Nov 1992 02:00:04 -0800 Subject: [PATCH] fix dom_init prototype (no args => __P((void)), not empty) SCCS-vsn: sys/sys/domain.h 7.6 --- usr/src/sys/sys/domain.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/usr/src/sys/sys/domain.h b/usr/src/sys/sys/domain.h index 3b801c05eb..5d957d00f0 100644 --- a/usr/src/sys/sys/domain.h +++ b/usr/src/sys/sys/domain.h @@ -4,25 +4,23 @@ * * %sccs.include.redist.c% * - * @(#)domain.h 7.5 (Berkeley) %G% + * @(#)domain.h 7.6 (Berkeley) %G% */ /* * Structure per communications domain. */ -#ifdef __STDC__ /* * Forward structure declarations for function prototypes [sic]. */ struct mbuf; -#endif struct domain { int dom_family; /* AF_xxx */ char *dom_name; int (*dom_init) /* initialize domain data structures */ - __P(()); + __P((void)); int (*dom_externalize) /* externalize access rights */ __P((struct mbuf *)); int (*dom_dispose) /* dispose of internalized rights */ -- 2.20.1