diff options
author | Christopher Faylor <me+cygwin@cgf.cx> | 2001-06-10 16:25:51 +0000 |
---|---|---|
committer | Christopher Faylor <me+cygwin@cgf.cx> | 2001-06-10 16:25:51 +0000 |
commit | 1ca687325a893e13a286a211fb8addcb7a12cb5d (patch) | |
tree | 14c13e68c553855c2ad50b50d9c69dde7a6f8e31 /gdb/defs.h | |
parent | 98d15b1d18cda64de22714f801073a6186cb7d05 (diff) | |
download | gdb-1ca687325a893e13a286a211fb8addcb7a12cb5d.tar.gz |
* gnu-regex.c: Eliminate obsolete check for _MSC_VER.
* utils.c (notice_quit): Remove dummy function only used for _MSC_VER.
* values.c (unpack_double): Remove obsolete check for _MSC_VER.
* defs.h: Ditto.
* m32r-rom.c: Ditto.
* p-exp.y: Ditto.
* ser-e7kpc.c: Ditto. Define WIN32_LEAN_AND_MEAN under _WIN32, for faster
compilation.
(get_ds_base): Remove _MSC_VER version of this function.
* nindy-share/ttyflush.c: Ditto. X
* rdi-share/host.h: Ditto. X
* ser-go32.c (dos_readchar): Remove call to obsolete function.
* remote-sim.c (gdb_os_poll_quit): Ditto.
* remote-e7000.c (expect): Remove obsolete #if 0'ed code.
* main.c (captured_main): Eliminate special Cygwin checks.
* ser-tcp.c: Remove unneeded __CYGWIN__ guard against system include.
Diffstat (limited to 'gdb/defs.h')
-rw-r--r-- | gdb/defs.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/gdb/defs.h b/gdb/defs.h index 9c33c53e841..16947394073 100644 --- a/gdb/defs.h +++ b/gdb/defs.h @@ -920,13 +920,7 @@ typedef struct ptid ptid_t; #include "fopen-same.h" #endif -/* Microsoft C can't deal with const pointers */ - -#ifdef _MSC_VER -#define CONST_PTR -#else #define CONST_PTR const -#endif /* Defaults for system-wide constants (if not defined by xm.h, we fake it). FIXME: Assumes 2's complement arithmetic */ @@ -1092,11 +1086,6 @@ extern char *getenv (const char *); #endif #ifdef HAVE_STDLIB_H -#if defined(_MSC_VER) && !defined(__cplusplus) -/* msvc defines these in stdlib.h for c code */ -#undef min -#undef max -#endif #include <stdlib.h> #endif #ifndef min |