Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/sys Eliminate space between function name and prototype.



details:   https://anonhg.NetBSD.org/src/rev/23e2ef42acc3
branches:  trunk
changeset: 565862:23e2ef42acc3
user:      matt <matt%NetBSD.org@localhost>
date:      Thu Apr 22 01:34:17 2004 +0000

description:
Eliminate space between function name and prototype.

diffstat:

 sys/sys/domain.h  |   6 +++---
 sys/sys/protosw.h |  12 ++++++------
 2 files changed, 9 insertions(+), 9 deletions(-)

diffs (46 lines):

diff -r 374b37a0589c -r 23e2ef42acc3 sys/sys/domain.h
--- a/sys/sys/domain.h  Thu Apr 22 01:01:40 2004 +0000
+++ b/sys/sys/domain.h  Thu Apr 22 01:34:17 2004 +0000
@@ -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 @@
 };
 
 #ifdef _KERNEL
-extern struct  domain *domains;
-void domaininit (void);
+extern struct domain *domains;
+void domaininit(void);
 #endif
 
 #endif /* !_SYS_DOMAIN_H_ */
diff -r 374b37a0589c -r 23e2ef42acc3 sys/sys/protosw.h
--- a/sys/sys/protosw.h Thu Apr 22 01:01:40 2004 +0000
+++ b/sys/sys/protosw.h Thu Apr 22 01:34:17 2004 +0000
@@ -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 @@
 #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_ */



Home | Main Index | Thread Index | Old Index