Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Sutcliffe <ir0nh34d@users.sourceforge.net>2011-03-05 22:36:28 +0300
committerChris Sutcliffe <ir0nh34d@users.sourceforge.net>2011-03-05 22:36:28 +0300
commitad41401c69d623d99e055572114bc338dcb5d010 (patch)
tree2e3d94e9604427eb6084d4972a06907c58057fa6 /winsup/w32api/include
parent66e49b8532aee9ab83d8148cc2b086b3da4287b2 (diff)
2011-03-05 Chris Sutcliffe <ir0nh34d@users.sourceforge.net>
* include/winbase.h (__GNUC_EXTENSION): Define, replacing __MINGW_EXTENSION.
Diffstat (limited to 'winsup/w32api/include')
-rw-r--r--winsup/w32api/include/winbase.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/winsup/w32api/include/winbase.h b/winsup/w32api/include/winbase.h
index bcca1b7cb..acb90fa7c 100644
--- a/winsup/w32api/include/winbase.h
+++ b/winsup/w32api/include/winbase.h
@@ -5,9 +5,9 @@
#endif
#ifdef __GNUC__
-#define __MINGW_EXTENSION __extension__
+#define __GNUC_EXTENSION __extension__
#else
-#define __MINGW_EXTENSION
+#define __GNUC_EXTENSION
#endif
#ifndef WINBASEAPI
@@ -852,8 +852,8 @@ typedef struct _DEBUG_EVENT {
typedef struct _OVERLAPPED {
ULONG_PTR Internal;
ULONG_PTR InternalHigh;
- __MINGW_EXTENSION union {
- __MINGW_EXTENSION struct {
+ __GNUC_EXTENSION union {
+ __GNUC_EXTENSION struct {
DWORD Offset;
DWORD OffsetHigh;
};