diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-06-24 18:53:48 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-06-24 18:53:48 +0000 |
commit | fd786668ea61bc96c5d2b670e88e02650b9fb07a (patch) | |
tree | f54b0b9a6385d18c82be4dd9f9fc554dcae4bdb7 /src/port/getopt.c | |
parent | f8dd00c3efcac3c245e5eb3989b2550f9894f574 (diff) | |
download | postgresql-fd786668ea61bc96c5d2b670e88e02650b9fb07a.tar.gz postgresql-fd786668ea61bc96c5d2b670e88e02650b9fb07a.zip |
Include c.h instead of postgres.h in files that need to be usable in
both frontend and backend. Per Andreas Pflug.
Diffstat (limited to 'src/port/getopt.c')
-rw-r--r-- | src/port/getopt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/port/getopt.c b/src/port/getopt.c index 0d697cbd89c..512331d21c4 100644 --- a/src/port/getopt.c +++ b/src/port/getopt.c @@ -32,7 +32,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF */ -#include "postgres.h" +#include "c.h" #if defined(LIBC_SCCS) && !defined(lint) |