Source-Changes-HG archive

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

[src/trunk]: src/sys/netccitt Remove/move a redundant extern.



details:   https://anonhg.NetBSD.org/src/rev/fcee4950bec7
branches:  trunk
changeset: 526854:fcee4950bec7
user:      matt <matt%NetBSD.org@localhost>
date:      Sun May 12 21:43:57 2002 +0000

description:
Remove/move a redundant extern.

diffstat:

 sys/netccitt/pk_output.c |  6 +++---
 sys/netccitt/pk_var.h    |  4 +++-
 2 files changed, 6 insertions(+), 4 deletions(-)

diffs (45 lines):

diff -r 92c965a2d5d0 -r fcee4950bec7 sys/netccitt/pk_output.c
--- a/sys/netccitt/pk_output.c  Sun May 12 21:43:23 2002 +0000
+++ b/sys/netccitt/pk_output.c  Sun May 12 21:43:57 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pk_output.c,v 1.15 2001/11/13 00:12:58 lukem Exp $     */
+/*     $NetBSD: pk_output.c,v 1.16 2002/05/12 21:43:57 matt Exp $      */
 
 /*
  * Copyright (c) 1984 University of British Columbia.
@@ -44,7 +44,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pk_output.c,v 1.15 2001/11/13 00:12:58 lukem Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pk_output.c,v 1.16 2002/05/12 21:43:57 matt Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -61,7 +61,7 @@
 #include <netccitt/pk_var.h>
 #include <netccitt/pk_extern.h>
 
-struct mbuf_cache pk_output_cache = {0}, pk_input_cache;
+struct mbuf_cache pk_output_cache = {0};
 
 void
 pk_output(lcp)
diff -r 92c965a2d5d0 -r fcee4950bec7 sys/netccitt/pk_var.h
--- a/sys/netccitt/pk_var.h     Sun May 12 21:43:23 2002 +0000
+++ b/sys/netccitt/pk_var.h     Sun May 12 21:43:57 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pk_var.h,v 1.15 2002/05/12 21:30:35 matt Exp $ */
+/*     $NetBSD: pk_var.h,v 1.16 2002/05/12 21:43:57 matt Exp $ */
 
 /*
  * Copyright (c) 1985 Computing Centre, University of British Columbia.
@@ -237,6 +237,8 @@
 extern struct pkcb_q pkcb_q;
 TAILQ_HEAD(pklcdhead, pklcd);
 extern struct pklcdhead pk_listenhead;
+extern struct mbuf_cache pk_input_cache;
+extern struct mbuf_cache pk_output_cache;
 
 extern char    *pk_name[], *pk_state[];
 extern int     pk_t20, pk_t21, pk_t22, pk_t23;



Home | Main Index | Thread Index | Old Index