diff options
author | Mark Alexander <marka@cygnus> | 1996-12-19 17:45:57 +0000 |
---|---|---|
committer | Mark Alexander <marka@cygnus> | 1996-12-19 17:45:57 +0000 |
commit | 214e969267acd11ce81584187f66b1139b4d81cd (patch) | |
tree | 178bb154f6eca3e65a103a2529144677edd62c89 /gdb/remote-mips.c | |
parent | 9c199842e54a91b59b2d319c1d53dc94464fa9f7 (diff) | |
download | gdb-214e969267acd11ce81584187f66b1139b4d81cd.zip gdb-214e969267acd11ce81584187f66b1139b4d81cd.tar.gz gdb-214e969267acd11ce81584187f66b1139b4d81cd.tar.bz2 |
* values.c (unpack_double): Make it compile with MSVC++ 2.x.
* remote-mips.c (S_IROTH): Define if not defined by stat.h, e.g.
when using MSVC++.
(common_open): Fix help string.
Diffstat (limited to 'gdb/remote-mips.c')
-rw-r--r-- | gdb/remote-mips.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/gdb/remote-mips.c b/gdb/remote-mips.c index ea92173..11d0e2b 100644 --- a/gdb/remote-mips.c +++ b/gdb/remote-mips.c @@ -40,6 +40,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include <varargs.h> #endif +/* Microsoft C's stat.h doesn't define all the POSIX file modes. */ +#ifndef S_IROTH +#define S_IROTH S_IREAD +#endif + extern void mips_set_processor_type_command PARAMS ((char *, int)); @@ -1457,8 +1462,8 @@ device is attached to the target board (e.g., /dev/ttya).\n" "temporary file to be used by GDB for downloads as the second argument.\n" "This filename must be in the form host:filename, where host is the name\n" "of the host running the TFTP server, and the file must be readable by the\n" -"world. If the local name of the temporary file differs from the name as\n", -"seen from the board via TFTP, specify that name as the third parameter\n"); +"world. If the local name of the temporary file differs from the name as\n" +"seen from the board via TFTP, specify that name as the third parameter.\n"); /* Parse the serial port name, the optional TFTP name, and the optional local TFTP name. */ |