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:
parent
0110795a35
commit
cbaac00901
@ -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_ */
|
||||
|
Loading…
Reference in New Issue
Block a user