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
8 lines
206 B
C
8 lines
206 B
C
#include <linux/version.h>
|
|
#include_next <linux/aio_abi.h>
|
|
/* IOCB_CMD_PREADV/PWRITEV has been added in 2.6.19 */
|
|
#if LINUX_VERSION_CODE < 132627
|
|
#define IOCB_CMD_PREADV 7
|
|
#define IOCB_CMD_PWRITEV 8
|
|
#endif
|