diff options
author | Felix Fietkau <nbd@openwrt.org> | 2016-01-30 20:14:59 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2016-01-30 20:14:59 +0000 |
commit | 21e2e0cc6e8e280267236e7429efe1224c576880 (patch) | |
tree | 3f21a8cd211dd41501aa1847c745ad55689d5022 /package | |
parent | a6d8789b9626aabdfc52d62ffd081455c412ea54 (diff) | |
download | master-187ad058-21e2e0cc6e8e280267236e7429efe1224c576880.tar.gz master-187ad058-21e2e0cc6e8e280267236e7429efe1224c576880.tar.bz2 master-187ad058-21e2e0cc6e8e280267236e7429efe1224c576880.zip |
perf: include asm/unistd.h instead of syscall.h to fix conflict with kernel headers
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@48573 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r-- | package/devel/perf/musl-compat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/devel/perf/musl-compat.h b/package/devel/perf/musl-compat.h index 458915d5eb..8ce97bea88 100644 --- a/package/devel/perf/musl-compat.h +++ b/package/devel/perf/musl-compat.h @@ -4,9 +4,9 @@ #ifndef __ASSEMBLER__ #include <sys/ioctl.h> +#include <asm/unistd.h> #include <unistd.h> #include <stdio.h> -#include <syscall.h> #include <sched.h> #undef _IOWR |