2613419a70
* sanitizer_common/Makefile.am (AM_CPPFLAGS): Add -isystem $(top_srcdir)/include/system. * sanitizer_common/Makefile.in: Regenerated. * include/system/linux/aio_abi.h: New header. * include/system/linux/mroute.h: New header. * include/system/linux/mroute6.h: New header. * include/system/linux/perf_event.h: New header. * include/system/linux/types.h: New header. From-SVN: r206476
6 lines
148 B
C
6 lines
148 B
C
#include <linux/version.h>
|
|
/* <linux/mroute6.h> has been added in 2.6.26 */
|
|
#if LINUX_VERSION_CODE >= 132634
|
|
#include_next <linux/mroute6.h>
|
|
#endif
|