Move the unconditional #include of net/ifq.h to the very end of file.

This seems to allow us to pass a universe with either clang or gcc
after r272244 (and r272260) and probably makes it easier to untabgle
these chained #includes in the future.
This commit is contained in:
Bjoern A. Zeeb 2014-09-28 17:09:40 +00:00
parent 0110795a35
commit cbaac00901
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=272261

View File

@ -249,8 +249,6 @@ struct ifnet {
*/
};
#include <net/ifq.h> /* XXXAO: temporary unconditional include */
/* for compatibility with other BSDs */
#define if_addrlist if_addrhead
#define if_list if_link
@ -608,4 +606,7 @@ int ether_poll_deregister(if_t ifp);
#endif /* DEVICE_POLLING */
#endif /* _KERNEL */
#include <net/ifq.h> /* XXXAO: temporary unconditional include */
#endif /* !_NET_IF_VAR_H_ */