diff options
author | Tom Lane | 2017-03-09 01:58:17 +0000 |
---|---|---|
committer | Tom Lane | 2017-03-09 01:58:17 +0000 |
commit | a72f0365db4168e7d720608fe3ac0ca3fe9355df (patch) | |
tree | 6d3a5620d0c08a9e7371f8e67152b9cab9cff89c /src/bin/pg_rewind/pg_rewind.h | |
parent | 9722bb5757c5e90617be685bf127911b63efe08d (diff) |
Fix inclusions of c.h from .h files.
We have a project policy that every .c file should start by including
postgres.h, postgres_fe.h, or c.h as appropriate; and then there is no
need for any .h file to explicitly include any of these. Fix a few
headers that were violating this policy by including c.h.
Discussion: https://postgr.es/m/CAEepm=2zCoeq3QxVwhS5DFeUh=yU6z81pbWMgfOB8OzyiBwxzw@mail.gmail.com
Discussion: https://postgr.es/m/[email protected]
Diffstat (limited to 'src/bin/pg_rewind/pg_rewind.h')
-rw-r--r-- | src/bin/pg_rewind/pg_rewind.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/bin/pg_rewind/pg_rewind.h b/src/bin/pg_rewind/pg_rewind.h index 5c8e7bb1bfc..524478a72bb 100644 --- a/src/bin/pg_rewind/pg_rewind.h +++ b/src/bin/pg_rewind/pg_rewind.h @@ -11,8 +11,6 @@ #ifndef PG_REWIND_H #define PG_REWIND_H -#include "c.h" - #include "datapagemap.h" #include "access/timeline.h" |