aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorDanny Smith <dannysmith@users.sourceforge.net>2002-03-25 21:23:55 +0000
committerDanny Smith <dannysmith@gcc.gnu.org>2002-03-25 21:23:55 +0000
commit355426abb3e43e662fc1144657f2c3038c9cf5f2 (patch)
treeac68188603fcfae715aef6dc38281b3de2239dd6 /gcc
parent8018b36d0b35fa05f43d58c960626852c7fd13ff (diff)
downloadgcc-355426abb3e43e662fc1144657f2c3038c9cf5f2.zip
gcc-355426abb3e43e662fc1144657f2c3038c9cf5f2.tar.gz
gcc-355426abb3e43e662fc1144657f2c3038c9cf5f2.tar.bz2
mingw32.h (WINT_TYPE): Define as "short unsigned int".
* config/i386/mingw32.h (WINT_TYPE): Define as "short unsigned int". From-SVN: r51340
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/i386/mingw32.h3
2 files changed, 8 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 10063e1..c228fcc 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2002-03-25 Danny Smith <dannysmith@sourceforge.users.net>
+
+ * config/i386/mingw32.h (WINT_TYPE): Define as "short unsigned
+ int".
+
2002-03-25 Zack Weinberg <zack@codesourcery.com>
* toplev.c: Don't include setjmp.h. Kill float_handler_set,
diff --git a/gcc/config/i386/mingw32.h b/gcc/config/i386/mingw32.h
index b93e856..ca74c49 100644
--- a/gcc/config/i386/mingw32.h
+++ b/gcc/config/i386/mingw32.h
@@ -110,3 +110,6 @@ do { \
Cygwin profiling code is written. Once "fixed", we can remove this. */
#undef SUBTARGET_PROLOGUE
+/* Define as short unsigned for compatability with MS runtime. */
+#undef WINT_TYPE
+#define WINT_TYPE "short unsigned int"