8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e754574 commit 9533de7Copy full SHA for 9533de7
src/interfaces/odbc/psqlodbc.c
@@ -86,7 +86,7 @@ WSADATA wsaData;
86
UNREFERENCED_PARAMETER(lpReserved);
87
}
88
89
-#else /* WIN32 */
+#else /* not WIN32 */
90
91
#ifndef TRUE
92
#define TRUE (BOOL)1
@@ -107,7 +107,7 @@ init(void)
107
return TRUE;
108
109
110
-#else
+#else /* not __GNUC__ */
111
112
/* These two functions do shared library initialziation on UNIX, well at least
113
* on Linux. I don't know about other systems.
@@ -125,7 +125,9 @@ _fini(void)
125
126
127
128
-#endif
+#endif /* not __GNUC__ */
129
+
130
+#endif /* not WIN32 */
131
132
/* This function is used to cause the Driver Manager to
133
call functions by number rather than name, which is faster.
0 commit comments