Staticize spx_remque() now that it's only used from spx_reass.c.

This commit is contained in:
Robert Watson 2009-05-25 13:52:51 +00:00
parent 37516046a2
commit 5265bc6013
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=192758
2 changed files with 1 additions and 2 deletions

View File

@ -102,7 +102,7 @@ spx_insque(struct spx_q *element, struct spx_q *head)
element->si_next->si_prev = element;
}
void
static void
spx_remque(struct spx_q *element)
{

View File

@ -155,7 +155,6 @@ int spx_output(struct spxpcb *cb, struct mbuf *m0);
int spx_reass(struct spxpcb *cb, struct spx *si);
void spx_reass_flush(struct spxpcb *cb);
void spx_reass_init(struct spxpcb *cb);
void spx_remque(struct spx_q *element);
#endif
#endif /* !_NETIPX_SPX_VAR_H_ */