diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2001-11-14 23:46:45 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2001-11-14 23:46:45 +0000 |
commit | 9da85b163e801cf91924582946b9d0b2fd6ce9d4 (patch) | |
tree | 9a3affe0df8dcd78deba224473bce058f9a06563 /gcc | |
parent | 6d88e1c332e7b91bad806ea4bc6cfa4c1191ae0e (diff) | |
download | gcc-9da85b163e801cf91924582946b9d0b2fd6ce9d4.zip gcc-9da85b163e801cf91924582946b9d0b2fd6ce9d4.tar.gz gcc-9da85b163e801cf91924582946b9d0b2fd6ce9d4.tar.bz2 |
linux.h: Include <linux.h> not "linux.h" to avoid infinite recursion.
* m68k/linux.h: Include <linux.h> not "linux.h" to avoid infinite
recursion.
From-SVN: r47032
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/m68k/linux.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e348057..083f0d9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-11-14 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + + * m68k/linux.h: Include <linux.h> not "linux.h" to avoid infinite + recursion. + 2001-11-14 Roger Sayle <roger@eyesopen.com> * fold-const.c (fold): Optimize strlen comparisons against zero. diff --git a/gcc/config/m68k/linux.h b/gcc/config/m68k/linux.h index 256d790..f7bb8ae 100644 --- a/gcc/config/m68k/linux.h +++ b/gcc/config/m68k/linux.h @@ -31,7 +31,7 @@ Boston, MA 02111-1307, USA. */ #include "elfos.h" #include "svr4.h" -#include "linux.h" /* some common stuff */ +#include <linux.h> /* some common stuff */ #undef TARGET_VERSION #define TARGET_VERSION fprintf (stderr, " (68k GNU/Linux with ELF)"); |