aboutsummaryrefslogtreecommitdiff
path: root/sim/mips/support.h
diff options
context:
space:
mode:
authorStu Grossman <grossman@cygnus>1996-12-20 19:05:28 +0000
committerStu Grossman <grossman@cygnus>1996-12-20 19:05:28 +0000
commitdbeec768398a3b8e1453d05a19ca9cc36f364315 (patch)
tree87c4627fca344d8ed65ea5bc7b0f513dec9c9715 /sim/mips/support.h
parentb71f8719a0d91752c377d8cf5fa91cd48ad7d425 (diff)
downloadbinutils-dbeec768398a3b8e1453d05a19ca9cc36f364315.zip
binutils-dbeec768398a3b8e1453d05a19ca9cc36f364315.tar.gz
binutils-dbeec768398a3b8e1453d05a19ca9cc36f364315.tar.bz2
* support.h: Use _WIN32 instead of __WIN32__. Also add defs for
SIGTRAP and SIGQUIT for _WIN32.
Diffstat (limited to 'sim/mips/support.h')
-rw-r--r--sim/mips/support.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/sim/mips/support.h b/sim/mips/support.h
index 11f285c..f921e62 100644
--- a/sim/mips/support.h
+++ b/sim/mips/support.h
@@ -30,9 +30,11 @@
architectures if desired. */
/* Control via a build boolean for the moment */
-#if defined(__GNUC__) || defined(__WIN32__)
+#if defined(__GNUC__) || defined(_WIN32)
-#ifdef __WIN32__
+#ifdef _WIN32
+#define SIGTRAP 5
+#define SIGQUIT 3
typedef signed __int64 word64;
typedef unsigned __int64 uword64;
#else