diff options
author | nsz <nsz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-08-25 14:08:27 +0000 |
---|---|---|
committer | nsz <nsz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-08-25 14:08:27 +0000 |
commit | 9cd4503714c4e596818c4ea8e15905c249b7a319 (patch) | |
tree | 76ec47aef23f55af6543da4e753c36771d2b84c4 /libgcc | |
parent | c4963714b1e4b9af9ecea64fe0e39a6778a39b33 (diff) | |
download | gcc-9cd4503714c4e596818c4ea8e15905c249b7a319.tar.gz |
[mips] Fix linux header use in libgcc
libgcc/
* config/mips/linux-unwind.h: Use sys/syscall.h.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@239759 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgcc')
-rw-r--r-- | libgcc/ChangeLog | 4 | ||||
-rw-r--r-- | libgcc/config/mips/linux-unwind.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog index b78c4b28c4c..99bd2f13681 100644 --- a/libgcc/ChangeLog +++ b/libgcc/ChangeLog @@ -1,3 +1,7 @@ +2016-08-25 Szabolcs Nagy <szabolcs.nagy@arm.com> + + * config/mips/linux-unwind.h: Use sys/syscall.h. + 2016-08-16 Joseph Myers <joseph@codesourcery.com> PR libgcc/77265 diff --git a/libgcc/config/mips/linux-unwind.h b/libgcc/config/mips/linux-unwind.h index bf12de5354b..4035c1211db 100644 --- a/libgcc/config/mips/linux-unwind.h +++ b/libgcc/config/mips/linux-unwind.h @@ -27,7 +27,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see state data appropriately. See unwind-dw2.c for the structs. */ #include <signal.h> -#include <asm/unistd.h> +#include <sys/syscall.h> /* The third parameter to the signal handler points to something with * this structure defined in asm/ucontext.h, but the name clashes with |