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;
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to