xref: /netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/include/system/linux/mroute.h (revision d16b7486a53dcb8072b60ec6fcb4373a2d0c27b7)
1 #include <linux/version.h>
2 /* <linux/mroute.h> before 2.6.26 included <linux/in.h>
3    which clashes with userspace headers.  */
4 #if LINUX_VERSION_CODE < 132634
5 #define _LINUX_IN_H
6 #include <linux/types.h>
7 #endif
8 #include_next <linux/mroute.h>
9