File tree Expand file tree Collapse file tree 27 files changed +65
-134
lines changed Expand file tree Collapse file tree 27 files changed +65
-134
lines changed Original file line number Diff line number Diff line change 6
6
*
7
7
* Copyright (C) 2000 by PostgreSQL Global Development Group
8
8
*
9
- * $Header: /cvsroot/pgsql/src/bin/pg_id/Attic/pg_id.c,v 1.12 2000/02/09 16:23:42 momjian Exp $
9
+ * $Header: /cvsroot/pgsql/src/bin/pg_id/Attic/pg_id.c,v 1.13 2000/02/16 13:15:25 momjian Exp $
10
10
*/
11
- #include <c .h>
11
+ #include <postgres .h>
12
12
13
13
#ifdef HAVE_GETOPT_H
14
14
#include <getopt.h>
Original file line number Diff line number Diff line change 3
3
*
4
4
* Copyright 2000 by PostgreSQL Global Development Group
5
5
*
6
- * $Header: /cvsroot/pgsql/src/bin/psql/command.c,v 1.18 2000/02/07 23:10:04 petere Exp $
6
+ * $Header: /cvsroot/pgsql/src/bin/psql/command.c,v 1.19 2000/02/16 13:15:26 momjian Exp $
7
7
*/
8
- #include <c.h>
8
+ #include "postgres.h"
9
9
#include "command.h"
10
10
11
11
#include <errno.h>
12
12
#include <assert.h>
13
- #include <string.h>
14
- #include <stdio.h>
15
- #include <stdlib.h>
16
13
#include <ctype.h>
17
14
#ifndef WIN32
18
15
#include <sys/types.h> /* for umask() */
22
19
#include <win32.h>
23
20
#endif
24
21
25
- #include < libpq-fe.h>
26
- #include < pqexpbuffer.h>
22
+ #include " libpq-fe.h"
23
+ #include " pqexpbuffer.h"
27
24
28
25
#include "common.h"
29
26
#include "copy.h"
Original file line number Diff line number Diff line change 3
3
*
4
4
* Copyright 2000 by PostgreSQL Global Development Group
5
5
*
6
- * $Header: /cvsroot/pgsql/src/bin/psql/command.h,v 1.7 2000/01/29 16:58:48 petere Exp $
6
+ * $Header: /cvsroot/pgsql/src/bin/psql/command.h,v 1.8 2000/02/16 13:15:26 momjian Exp $
7
7
*/
8
8
#ifndef COMMAND_H
9
9
#define COMMAND_H
10
10
11
- #include <c.h>
12
-
13
- #include <pqexpbuffer.h>
11
+ #include "pqexpbuffer.h"
14
12
15
13
#include "settings.h"
16
14
#include "print.h"
Original file line number Diff line number Diff line change 3
3
*
4
4
* Copyright 2000 by PostgreSQL Global Development Group
5
5
*
6
- * $Header: /cvsroot/pgsql/src/bin/psql/common.c,v 1.13 2000/02/13 21:45:14 petere Exp $
6
+ * $Header: /cvsroot/pgsql/src/bin/psql/common.c,v 1.14 2000/02/16 13:15:26 momjian Exp $
7
7
*/
8
- #include <c.h>
8
+ #include "postgres.h"
9
9
#include "common.h"
10
10
11
11
#include <errno.h>
12
- #include <stdlib.h>
13
- #include <stdio.h>
14
- #include <string.h>
15
12
#include <stdarg.h>
16
13
#ifdef HAVE_TERMIOS_H
17
14
#include <termios.h>
27
24
#include <win32.h>
28
25
#endif
29
26
30
- #include < libpq-fe.h>
31
- #include < postgres_ext.h>
32
- #include < pqsignal.h>
33
- #include < version.h>
27
+ #include " libpq-fe.h"
28
+ #include " postgres_ext.h"
29
+ #include " pqsignal.h"
30
+ #include " version.h"
34
31
35
32
#include "settings.h"
36
33
#include "variables.h"
Original file line number Diff line number Diff line change 3
3
*
4
4
* Copyright 2000 by PostgreSQL Global Development Group
5
5
*
6
- * $Header: /cvsroot/pgsql/src/bin/psql/common.h,v 1.5 2000/01/29 16:58:48 petere Exp $
6
+ * $Header: /cvsroot/pgsql/src/bin/psql/common.h,v 1.6 2000/02/16 13:15:26 momjian Exp $
7
7
*/
8
8
#ifndef COMMON_H
9
9
#define COMMON_H
10
10
11
- #include <c.h>
12
- #include <libpq-fe.h>
11
+ #include "libpq-fe.h"
13
12
14
13
char * xstrdup (const char * string );
15
14
Original file line number Diff line number Diff line change 3
3
*
4
4
* Copyright 2000 by PostgreSQL Global Development Group
5
5
*
6
- * $Header: /cvsroot/pgsql/src/bin/psql/copy.c,v 1.9 2000/01/29 16:58:48 petere Exp $
6
+ * $Header: /cvsroot/pgsql/src/bin/psql/copy.c,v 1.10 2000/02/16 13:15:26 momjian Exp $
7
7
*/
8
- #include <c.h>
8
+ #include "postgres.h"
9
9
#include "copy.h"
10
10
11
- #include <stdlib.h>
12
- #include <stdio.h>
13
- #include <string.h>
14
11
#include <errno.h>
15
12
#include <assert.h>
16
13
#ifndef WIN32
19
16
#include <io.h> /* I think */
20
17
#endif
21
18
22
- #include < libpq-fe.h>
19
+ #include " libpq-fe.h"
23
20
24
21
#include "settings.h"
25
22
#include "common.h"
Original file line number Diff line number Diff line change 3
3
*
4
4
* Copyright 2000 by PostgreSQL Global Development Group
5
5
*
6
- * $Header: /cvsroot/pgsql/src/bin/psql/copy.h,v 1.6 2000/01/29 16:58:48 petere Exp $
6
+ * $Header: /cvsroot/pgsql/src/bin/psql/copy.h,v 1.7 2000/02/16 13:15:26 momjian Exp $
7
7
*/
8
8
#ifndef COPY_H
9
9
#define COPY_H
10
10
11
- #include <c.h>
12
- #include <stdio.h>
13
- #include <libpq-fe.h>
11
+ #include "libpq-fe.h"
14
12
15
13
/* handler for \copy */
16
14
bool do_copy (const char * args );
Original file line number Diff line number Diff line change 3
3
*
4
4
* Copyright 2000 by PostgreSQL Global Development Group
5
5
*
6
- * $Header: /cvsroot/pgsql/src/bin/psql/describe.c,v 1.16 2000/02/07 23:10:06 petere Exp $
6
+ * $Header: /cvsroot/pgsql/src/bin/psql/describe.c,v 1.17 2000/02/16 13:15:26 momjian Exp $
7
7
*/
8
- #include <c.h>
8
+ #include "postgres.h"
9
9
#include "describe.h"
10
10
11
- #include <string.h>
12
-
13
- #include <postgres.h> /* for VARHDRSZ, int4 type */
14
- #include <postgres_ext.h>
15
- #include <libpq-fe.h>
11
+ #include "libpq-fe.h"
16
12
17
13
#include "common.h"
18
14
#include "settings.h"
Original file line number Diff line number Diff line change 3
3
*
4
4
* Copyright 2000 by PostgreSQL Global Development Group
5
5
*
6
- * $Header: /cvsroot/pgsql/src/bin/psql/describe.h,v 1.7 2000/01/29 16:58:48 petere Exp $
6
+ * $Header: /cvsroot/pgsql/src/bin/psql/describe.h,v 1.8 2000/02/16 13:15:26 momjian Exp $
7
7
*/
8
8
#ifndef DESCRIBE_H
9
9
#define DESCRIBE_H
10
10
11
- #include <c.h>
12
11
#include "settings.h"
13
12
14
13
/* \da */
Original file line number Diff line number Diff line change 3
3
*
4
4
* Copyright 2000 by PostgreSQL Global Development Group
5
5
*
6
- * $Header: /cvsroot/pgsql/src/bin/psql/help.c,v 1.18 2000/02/13 21:45:14 petere Exp $
6
+ * $Header: /cvsroot/pgsql/src/bin/psql/help.c,v 1.19 2000/02/16 13:15:26 momjian Exp $
7
7
*/
8
- #include <c.h>
8
+ #include "postgres.h"
9
9
#include "help.h"
10
10
11
- #include <stdio.h>
12
- #include <stdlib.h>
13
11
#include <signal.h>
14
12
#include <errno.h>
15
13
24
22
#include <win32.h>
25
23
#endif
26
24
27
- #include < pqsignal.h>
28
- #include < libpq-fe.h>
25
+ #include " pqsignal.h"
26
+ #include " libpq-fe.h"
29
27
30
28
#include "settings.h"
31
29
#include "common.h"
You can’t perform that action at this time.
0 commit comments