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/config/m68k/linux.h | |
parent | 6d88e1c332e7b91bad806ea4bc6cfa4c1191ae0e (diff) | |
download | gcc-9da85b163e801cf91924582946b9d0b2fd6ce9d4.tar.gz |
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/config/m68k/linux.h')
-rw-r--r-- | gcc/config/m68k/linux.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/m68k/linux.h b/gcc/config/m68k/linux.h index 256d790ccf9..f7bb8ae78fc 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)"); |