Skip to content

Commit 7d5b08d

Browse files
committed
More cleanup
1 parent 6981766 commit 7d5b08d

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

src/backend/commands/rename.c

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,17 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/rename.c,v 1.30 1999/07/16 04:58:40 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/rename.c,v 1.31 1999/07/16 05:41:16 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
14+
#include "postgres.h"
1415
#ifndef HAVE_MEMMOVE
1516
#include <regex/utils.h>
1617
#else
1718
#include <string.h>
1819
#endif
1920

20-
#include "postgres.h"
21-
2221
#include "access/heapam.h"
2322
#include "catalog/catname.h"
2423
#include "utils/syscache.h"

src/backend/postmaster/postmaster.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
*
1212
* IDENTIFICATION
13-
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.112 1999/07/16 04:59:38 momjian Exp $
13+
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.113 1999/07/16 05:41:17 momjian Exp $
1414
*
1515
* NOTES
1616
*
@@ -32,13 +32,13 @@
3232
*
3333
*-------------------------------------------------------------------------
3434
*/
35-
/* moved here to prevent double define */
35+
#include "postgres.h"
3636
#include <sys/param.h>
37+
/* moved here to prevent double define */
3738
#ifdef HAVE_NETDB_H
3839
#include <netdb.h>
3940
#endif
4041

41-
#include "postgres.h"
4242

4343
#ifndef MAXHOSTNAMELEN
4444
#define MAXHOSTNAMELEN 256

src/backend/utils/init/enbl.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,12 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/utils/init/Attic/enbl.c,v 1.8 1999/07/15 15:20:32 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/utils/init/Attic/enbl.c,v 1.9 1999/07/16 05:41:18 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
1414
#include "postgres.h"
15+
#include "utils/module.h"
1516

1617
/*
1718
* BypassEnable

src/bin/pg_passwd/pg_passwd.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/*
22
* @(#) pg_passwd.c 1.8 09:13:16 97/07/02 Y. Ichikawa
33
*/
4-
#include "postgres.h"
5-
64
#include <stdio.h>
75
#include <stdlib.h>
6+
7+
#include "postgres.h"
88
#if defined(HAVE_STRING_H)
99
#include <string.h>
1010
#else

0 commit comments

Comments
 (0)