Attempt to fix build after 281351 by defining full prototype for the

functions that were moved to ip_reass.c.
This commit is contained in:
Xin LI 2015-04-11 01:06:59 +00:00
parent e157d5973c
commit 843b0e5716
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=281388

View File

@ -90,11 +90,11 @@ CTASSERT(sizeof(struct ip) == 20);
#endif
/* IP reassembly functions are defined in ip_reass.c. */
extern void ipreass_init();
extern void ipreass_drain();
extern void ipreass_slowtimo();
extern void ipreass_init(void);
extern void ipreass_drain(void);
extern void ipreass_slowtimo(void);
#ifdef VIMAGE
extern void ipreass_destroy();
extern void ipreass_destroy(void);
#endif
struct rwlock in_ifaddr_lock;