From 01eea27c4c37a737f5aaaa32a7ec5d74c6ef5678 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sun, 27 Feb 2000 01:10:31 +0000 Subject: [PATCH] Fix a couple of inconsistent usages of include <...> vs. include "...". --- src/bin/psql/startup.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bin/psql/startup.c b/src/bin/psql/startup.c index 7f538048ac..82a7bcd4d1 100644 --- a/src/bin/psql/startup.c +++ b/src/bin/psql/startup.c @@ -3,7 +3,7 @@ * * Copyright 2000 by PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/psql/startup.c,v 1.25 2000/02/20 14:28:20 petere Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/startup.c,v 1.26 2000/02/27 01:10:31 tgl Exp $ */ #include "postgres.h" @@ -21,8 +21,8 @@ #include #endif -#include -#include +#include "libpq-fe.h" +#include "version.h" #include "command.h" #include "common.h" -- 2.40.0