svn commit: r281388 - head/sys/netinet
Xin LI
delphij at FreeBSD.org
Sat Apr 11 01:07:00 UTC 2015
Author: delphij
Date: Sat Apr 11 01:06:59 2015
New Revision: 281388
URL: https://svnweb.freebsd.org/changeset/base/281388
Log:
Attempt to fix build after 281351 by defining full prototype for the
functions that were moved to ip_reass.c.
Modified:
head/sys/netinet/ip_input.c
Modified: head/sys/netinet/ip_input.c
==============================================================================
--- head/sys/netinet/ip_input.c Sat Apr 11 00:45:03 2015 (r281387)
+++ head/sys/netinet/ip_input.c Sat Apr 11 01:06:59 2015 (r281388)
@@ -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;
More information about the svn-src-head
mailing list