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/misc.c | |
parent | 7326e78c4249393359edce09f555aaa049be2a80 (diff) | |
download | postgresql-968d7733a19cda3db16947024bd335d877b3d9c3.tar.gz |
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/misc.c')
-rw-r--r-- | src/interfaces/odbc/misc.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/interfaces/odbc/misc.c b/src/interfaces/odbc/misc.c index ae75320bb5..1bfb877cbf 100644 --- a/src/interfaces/odbc/misc.c +++ b/src/interfaces/odbc/misc.c @@ -12,12 +12,12 @@ *------- */ +#include "psqlodbc.h" + #include <stdio.h> #include <stdarg.h> #include <string.h> -#include "psqlodbc.h" - #ifndef WIN32 #if HAVE_PWD_H #include <pwd.h> @@ -120,10 +120,6 @@ qlog(char *fmt,...) /* Undefine these because windows.h will redefine and cause a warning */ -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - #ifdef WIN32 #undef va_start #undef va_end |