|
1 | 1 | /* -------------------------------------------------------------------------
|
2 | 2 | * pg_dumplo
|
3 | 3 | *
|
4 |
| - * $Header: /cvsroot/pgsql/contrib/pg_dumplo/Attic/main.c,v 1.11 2002/09/04 20:31:07 momjian Exp $ |
| 4 | + * $Header: /cvsroot/pgsql/contrib/pg_dumplo/Attic/main.c,v 1.12 2002/09/05 21:01:16 tgl Exp $ |
5 | 5 | *
|
6 | 6 | *Karel Zak 1999-2000
|
7 | 7 | * -------------------------------------------------------------------------
|
8 | 8 | */
|
9 | 9 |
|
10 |
| -/* We import postgres_fe.h mostly to get the HAVE_GETOPT_LONG configure result. */ |
11 |
| -#ifndefOUT_OF_PG |
12 | 10 | #include"postgres_fe.h"
|
13 |
| -#endif |
14 | 11 |
|
15 |
| -#include<stdio.h> |
16 |
| -#include<unistd.h> |
17 |
| -#include<stdlib.h> |
18 |
| -#include<string.h> |
19 | 12 | #include<errno.h>
|
| 13 | +#include<unistd.h> |
20 | 14 |
|
21 |
| -#include<libpq-fe.h> |
22 |
| -#include<libpq/libpq-fs.h> |
| 15 | +#include"libpq-fe.h" |
| 16 | +#include"libpq/libpq-fs.h" |
23 | 17 |
|
24 | 18 | #include"pg_dumplo.h"
|
25 | 19 |
|
|