Skip to content

Commit 01eea27

Browse files
committed
Fix a couple of inconsistent usages of include <...> vs. include "...".
1 parent a4a9976 commit 01eea27

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/bin/psql/startup.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* Copyright 2000 by PostgreSQL Global Development Group
55
*
6-
* $Header: /cvsroot/pgsql/src/bin/psql/startup.c,v 1.25 2000/02/20 14:28:20 petere Exp $
6+
* $Header: /cvsroot/pgsql/src/bin/psql/startup.c,v 1.26 2000/02/27 01:10:31 tgl Exp $
77
*/
88
#include "postgres.h"
99

@@ -21,8 +21,8 @@
2121
#include <getopt.h>
2222
#endif
2323

24-
#include <libpq-fe.h>
25-
#include <version.h>
24+
#include "libpq-fe.h"
25+
#include "version.h"
2626

2727
#include "command.h"
2828
#include "common.h"

0 commit comments

Comments
 (0)