diff options
author | Christopher Faylor <me+cygwin@cgf.cx> | 2000-03-25 03:37:35 +0000 |
---|---|---|
committer | Christopher Faylor <me+cygwin@cgf.cx> | 2000-03-25 03:37:35 +0000 |
commit | 0904bda7636c48f55b1fb5fb35e2ee786440921d (patch) | |
tree | e3f338b3ae8462ceacf839c3b61168cd1ac0c87f /gdb/config/mips | |
parent | a580bff1b22db7b2648fa0c609571d5d513392ff (diff) | |
download | gdb-0904bda7636c48f55b1fb5fb35e2ee786440921d.tar.gz |
* config/mips/tm-wince.h: Fix typo which caused include of tm-mips.h to be
inoperative.
Diffstat (limited to 'gdb/config/mips')
-rw-r--r-- | gdb/config/mips/tm-wince.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gdb/config/mips/tm-wince.h b/gdb/config/mips/tm-wince.h index f4bfad2185e..2cb7e494e11 100644 --- a/gdb/config/mips/tm-wince.h +++ b/gdb/config/mips/tm-wince.h @@ -1,4 +1,5 @@ /* Definitions to make GDB run on a Windows CE system. + Copyright 2000 Free Software Foundation, Inc. This file is part of GDB. @@ -18,8 +19,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#ifndef TM_MIPS_H -#define TM_MIPS_H 1 +#ifndef TM_WINCE_H +#define TM_WINCE_H 1 #include "mips/tm-mips.h" @@ -31,4 +32,4 @@ void wince_software_single_step (unsigned int, int); #undef TARGET_BYTE_ORDER_SELECTABLE #define TARGET_BYTE_ORDER LITTLE_ENDIAN -#endif /* TM_MIPS_H */ +#endif /* TM_WINCE_H */ |