Eliminate space between function name and prototype.
This commit is contained in:
parent
e50668c7fa
commit
e5dd03bf92
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: domain.h,v 1.17 2004/04/22 01:01:42 matt Exp $ */
|
||||
/* $NetBSD: domain.h,v 1.18 2004/04/22 01:34:17 matt Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1982, 1986, 1993
|
||||
|
@ -68,8 +68,8 @@ struct domain {
|
|||
};
|
||||
|
||||
#ifdef _KERNEL
|
||||
extern struct domain *domains;
|
||||
void domaininit (void);
|
||||
extern struct domain *domains;
|
||||
void domaininit(void);
|
||||
#endif
|
||||
|
||||
#endif /* !_SYS_DOMAIN_H_ */
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: protosw.h,v 1.34 2004/04/22 01:01:42 matt Exp $ */
|
||||
/* $NetBSD: protosw.h,v 1.35 2004/04/22 01:34:17 matt Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1982, 1986, 1993
|
||||
|
@ -256,11 +256,11 @@ extern u_int pffasttimo_now;
|
|||
#define PRT_FAST_ISEXPIRED(t) (PRT_FAST_ISARMED((t)) && (t) <= pffasttimo_now)
|
||||
|
||||
struct sockaddr;
|
||||
const struct protosw *pffindproto (int, int, int);
|
||||
const struct protosw *pffindtype (int, int);
|
||||
struct domain *pffinddomain (int);
|
||||
void pfctlinput (int, struct sockaddr *);
|
||||
void pfctlinput2 (int, struct sockaddr *, void *);
|
||||
const struct protosw *pffindproto(int, int, int);
|
||||
const struct protosw *pffindtype(int, int);
|
||||
struct domain *pffinddomain(int);
|
||||
void pfctlinput(int, struct sockaddr *);
|
||||
void pfctlinput2(int, struct sockaddr *, void *);
|
||||
#endif /* _KERNEL */
|
||||
|
||||
#endif /* !_SYS_PROTOSW_H_ */
|
||||
|
|
Loading…
Reference in New Issue