diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2000-02-27 01:10:31 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2000-02-27 01:10:31 +0000 |
commit | 01eea27c4c37a737f5aaaa32a7ec5d74c6ef5678 (patch) | |
tree | f77448ffe11cedb30c8748495b3914e977b59498 /src | |
parent | a4a9976d2ebcdc8415cef50d5d5ff38333bb315b (diff) | |
download | postgresql-01eea27c4c37a737f5aaaa32a7ec5d74c6ef5678.tar.gz postgresql-01eea27c4c37a737f5aaaa32a7ec5d74c6ef5678.zip |
Fix a couple of inconsistent usages of include <...> vs. include "...".
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/psql/startup.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/psql/startup.c b/src/bin/psql/startup.c index 7f538048acd..82a7bcd4d13 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 <getopt.h> #endif -#include <libpq-fe.h> -#include <version.h> +#include "libpq-fe.h" +#include "version.h" #include "command.h" #include "common.h" |