Index: src/sys/kern/subr_mbuf.c =================================================================== RCS file: /home/ncvs/src/sys/kern/subr_mbuf.c,v retrieving revision 1.11 diff -u -r1.11 subr_mbuf.c --- src/sys/kern/subr_mbuf.c 1 Dec 2001 00:21:30 -0000 1.11 +++ src/sys/kern/subr_mbuf.c 22 Dec 2001 20:06:52 -0000 @@ -933,7 +933,6 @@ * Local mbuf & cluster alloc macros and routines. * Local macro and function names begin with an underscore ("_"). */ -void _mext_free(struct mbuf *); void _mclfree(struct mbuf *); #define _m_get(m, how, type) do { \ Index: src/sys/sys/mbuf.h =================================================================== RCS file: /home/ncvs/src/sys/sys/mbuf.h,v retrieving revision 1.86 diff -u -r1.86 mbuf.h --- src/sys/sys/mbuf.h 14 Dec 2001 17:31:58 -0000 1.86 +++ src/sys/sys/mbuf.h 22 Dec 2001 20:07:03 -0000 @@ -427,6 +427,7 @@ extern int nmbufs; /* Maximum number of mbufs */ extern int nsfbufs; /* Number of sendfile(2) bufs */ +void _mext_free(struct mbuf *); void m_adj(struct mbuf *, int); struct mbuf *m_aux_add(struct mbuf *, int, int); struct mbuf *m_aux_add2(struct mbuf *, int, int, void *);