diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2001-08-24 14:07:50 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2001-08-24 14:07:50 +0000 |
commit | 968d7733a19cda3db16947024bd335d877b3d9c3 (patch) | |
tree | a39593b292dbfcaad45924e9a20ae90300167524 /src/interfaces/odbc/gpps.c | |
parent | 7326e78c4249393359edce09f555aaa049be2a80 (diff) |
Rename config.h to pg_config.h and os.h to pg_config_os.h, fix a number of
places that were including the wrong files.
Diffstat (limited to 'src/interfaces/odbc/gpps.c')
-rw-r--r-- | src/interfaces/odbc/gpps.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/interfaces/odbc/gpps.c b/src/interfaces/odbc/gpps.c index 248f8e0fcd3..4b13fbe62e5 100644 --- a/src/interfaces/odbc/gpps.c +++ b/src/interfaces/odbc/gpps.c @@ -21,9 +21,7 @@ #ifndef WIN32 -#if HAVE_CONFIG_H -#include "config.h" /* produced by configure */ -#endif +#include "gpps.h" #include <stdio.h> #include <unistd.h> @@ -36,7 +34,6 @@ #include <sys/types.h> #include <string.h> #include "misc.h" -#include "gpps.h" #include "dlg_specific.h" #ifndef TRUE @@ -286,7 +283,7 @@ WritePrivateProfileString(char *theSection, /* section name */ } -#if 0 +#if NOT_USED /* * Ok. What the hell's the default behaviour for a null input buffer, and null * section name. For now if either are null I ignore the request, until @@ -449,7 +446,7 @@ if (!keyFound) return aReturnLength > 0 ? aReturnLength - 1 : 0; } -#endif +#endif /* NOT_USED */ -#endif +#endif /* not WIN32 */ |