diff options
| author | Tom Lane | 2002-09-05 00:43:07 +0000 |
|---|---|---|
| committer | Tom Lane | 2002-09-05 00:43:07 +0000 |
| commit | 52c9d259335c9670f6487c5f40fc53b57a4c7b17 (patch) | |
| tree | 721b585843dca83ac9517ca933fa891c4532a530 /contrib/dblink/dblink.c | |
| parent | 3f63787cbfe0f1e837c92cd8ac35fd7ab811c18b (diff) | |
Be careful to include postgres.h *before* any system headers, to ensure
that the right flavors of largefile-related definitions are seen.
Most of these changes are probably unnecessary, but better safe than
sorry.
Diffstat (limited to 'contrib/dblink/dblink.c')
| -rw-r--r-- | contrib/dblink/dblink.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/contrib/dblink/dblink.c b/contrib/dblink/dblink.c index 899143adab3..7718b65f33c 100644 --- a/contrib/dblink/dblink.c +++ b/contrib/dblink/dblink.c @@ -26,9 +26,8 @@ * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. * */ - -#include <string.h> #include "postgres.h" + #include "libpq-fe.h" #include "libpq-int.h" #include "fmgr.h" |
