mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
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:
parent
e157d5973c
commit
843b0e5716
1 changed files with 4 additions and 4 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue