summaryrefslogtreecommitdiff
path: root/src/backend/access
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2017-02-25 16:12:24 -0500
committerTom Lane <tgl@sss.pgh.pa.us>2017-02-25 16:12:55 -0500
commit9e3755ecb2d058f7d123dd35a2e1784006190962 (patch)
treef938cae7833ef756947d4ac074a83d31f5f6113d /src/backend/access
parent5639ceddcb7f3efa8751b2ba6e50cc1d27cc2a45 (diff)
downloadpostgresql-9e3755ecb2d058f7d123dd35a2e1784006190962.tar.gz
Remove useless duplicate inclusions of system header files.
c.h #includes a number of core libc header files, such as <stdio.h>. There's no point in re-including these after having read postgres.h, postgres_fe.h, or c.h; so remove code that did so. While at it, also fix some places that were ignoring our standard pattern of "include postgres[_fe].h, then system header files, then other Postgres header files". While there's not any great magic in doing it that way rather than system headers last, it's silly to have just a few files deviating from the general pattern. (But I didn't attempt to enforce this globally, only in files I was touching anyway.) I'd be the first to say that this is mostly compulsive neatnik-ism, but over time it might save enough compile cycles to be useful.
Diffstat (limited to 'src/backend/access')
-rw-r--r--src/backend/access/transam/timeline.c1
-rw-r--r--src/backend/access/transam/twophase.c1
-rw-r--r--src/backend/access/transam/xlogarchive.c1
3 files changed, 0 insertions, 3 deletions
diff --git a/src/backend/access/transam/timeline.c b/src/backend/access/transam/timeline.c
index c8240b112d..1fdc59190c 100644
--- a/src/backend/access/transam/timeline.c
+++ b/src/backend/access/transam/timeline.c
@@ -32,7 +32,6 @@
#include "postgres.h"
#include <sys/stat.h>
-#include <stdio.h>
#include <unistd.h>
#include "access/timeline.h"
diff --git a/src/backend/access/transam/twophase.c b/src/backend/access/transam/twophase.c
index 50c70b2920..0a8edb9e58 100644
--- a/src/backend/access/transam/twophase.c
+++ b/src/backend/access/transam/twophase.c
@@ -54,7 +54,6 @@
#include <fcntl.h>
#include <sys/stat.h>
-#include <sys/types.h>
#include <time.h>
#include <unistd.h>
diff --git a/src/backend/access/transam/xlogarchive.c b/src/backend/access/transam/xlogarchive.c
index 7e91e8f81a..7afb73579b 100644
--- a/src/backend/access/transam/xlogarchive.c
+++ b/src/backend/access/transam/xlogarchive.c
@@ -14,7 +14,6 @@
#include "postgres.h"
-#include <sys/types.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <signal.h>