Skip to content
Snippets Groups Projects
Commit 9533de72 authored by Peter Eisentraut's avatar Peter Eisentraut
Browse files

didn't compile

parent e7545748
No related branches found
No related tags found
No related merge requests found
...@@ -86,7 +86,7 @@ WSADATA wsaData; ...@@ -86,7 +86,7 @@ WSADATA wsaData;
UNREFERENCED_PARAMETER(lpReserved); UNREFERENCED_PARAMETER(lpReserved);
} }
#else /* WIN32 */ #else /* not WIN32 */
#ifndef TRUE #ifndef TRUE
#define TRUE (BOOL)1 #define TRUE (BOOL)1
...@@ -107,7 +107,7 @@ init(void) ...@@ -107,7 +107,7 @@ init(void)
return TRUE; return TRUE;
} }
#else #else /* not __GNUC__ */
/* These two functions do shared library initialziation on UNIX, well at least /* These two functions do shared library initialziation on UNIX, well at least
* on Linux. I don't know about other systems. * on Linux. I don't know about other systems.
...@@ -125,7 +125,9 @@ _fini(void) ...@@ -125,7 +125,9 @@ _fini(void)
return TRUE; return TRUE;
} }
#endif #endif /* not __GNUC__ */
#endif /* not WIN32 */
/* This function is used to cause the Driver Manager to /* This function is used to cause the Driver Manager to
call functions by number rather than name, which is faster. call functions by number rather than name, which is faster.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment