summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2012-12-27 14:03:18 +0200
committerTor Lillqvist <tml@iki.fi>2012-12-27 14:03:18 +0200
commit6943c7b11c92f3d4971704abcb213f57eaa4e115 (patch)
treeb1a21045df0ad88eb5216c0ab134f2e5ddc836f3 /sal
parentd72a0b5c618a37b70ba4d111b457deefad8f025f (diff)
Sigh, my git grep regexps missed some cases
Change-Id: I085f14f40fb83cba171b35b14cf7c0d99091fc00
Diffstat (limited to 'sal')
-rw-r--r--sal/osl/w32/system.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sal/osl/w32/system.h b/sal/osl/w32/system.h
index dc0dc145be1d..f3f36f774eb2 100644
--- a/sal/osl/w32/system.h
+++ b/sal/osl/w32/system.h
@@ -48,7 +48,7 @@
*/
#define WIN32_LEAN_AND_MEAN
-#ifdef GCC
+#ifdef __GNUC__
// windows.h includes winsock2.h
// if _WIN32_WINNT > 0x0400
// so someone cannot include winsock.h
@@ -80,7 +80,7 @@
#pragma warning(pop)
#endif
-#ifdef GCC
+#ifdef __GNUC__
# ifndef SA_FAMILY_DECL
# define SA_FAMILY_DECL short sa_family
# endif
@@ -95,6 +95,6 @@
# define NSPROTO_IPX 1000
# define NSPROTO_SPX 1256
# define NSPROTO_SPXII 1257
-#endif // #ifdef GCC
+#endif // #ifdef __GNUC__
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */