aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2000-07-14 16:40:40 +0000
committerPeter Eisentraut <peter_e@gmx.net>2000-07-14 16:40:40 +0000
commit9533de72bf40858302f7b80b946d9e500bfddb25 (patch)
tree08e72f01ecd6e17142d92bf6f27d1b7d88c6cc54 /src
parente7545748b5fab87ac2c0aba0d2166b2e2157ce22 (diff)
downloadpostgresql-9533de72bf40858302f7b80b946d9e500bfddb25.tar.gz
postgresql-9533de72bf40858302f7b80b946d9e500bfddb25.zip
didn't compile
Diffstat (limited to 'src')
-rw-r--r--src/interfaces/odbc/psqlodbc.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/interfaces/odbc/psqlodbc.c b/src/interfaces/odbc/psqlodbc.c
index a4598383fcd..dbf4029a4ac 100644
--- a/src/interfaces/odbc/psqlodbc.c
+++ b/src/interfaces/odbc/psqlodbc.c
@@ -86,7 +86,7 @@ WSADATA wsaData;
UNREFERENCED_PARAMETER(lpReserved);
}
-#else /* WIN32 */
+#else /* not WIN32 */
#ifndef TRUE
#define TRUE (BOOL)1
@@ -107,7 +107,7 @@ init(void)
return TRUE;
}
-#else
+#else /* not __GNUC__ */
/* These two functions do shared library initialziation on UNIX, well at least
* on Linux. I don't know about other systems.
@@ -125,7 +125,9 @@ _fini(void)
return TRUE;
}
-#endif
+#endif /* not __GNUC__ */
+
+#endif /* not WIN32 */
/* This function is used to cause the Driver Manager to
call functions by number rather than name, which is faster.