aboutsummaryrefslogtreecommitdiff
path: root/contrib/pgcrypto
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2011-09-01 10:03:22 -0400
committerBruce Momjian <bruce@momjian.us>2011-09-01 10:04:27 -0400
commit6416a82a62db4e66b2edb0fa8fc83a580c3f1931 (patch)
tree748a06b7c1a122d741b87a6b11217d7749b64fe2 /contrib/pgcrypto
parent63d06ef59156719efd0208c62e764a69611b3f12 (diff)
downloadpostgresql-6416a82a62db4e66b2edb0fa8fc83a580c3f1931.tar.gz
postgresql-6416a82a62db4e66b2edb0fa8fc83a580c3f1931.zip
Remove unnecessary #include references, per pgrminclude script.
Diffstat (limited to 'contrib/pgcrypto')
-rw-r--r--contrib/pgcrypto/crypt-blowfish.c1
-rw-r--r--contrib/pgcrypto/crypt-des.c1
-rw-r--r--contrib/pgcrypto/crypt-gensalt.c1
-rw-r--r--contrib/pgcrypto/internal.c1
-rw-r--r--contrib/pgcrypto/md5.c1
-rw-r--r--contrib/pgcrypto/pgcrypto.c1
-rw-r--r--contrib/pgcrypto/pgp-pgsql.c2
-rw-r--r--contrib/pgcrypto/sha1.c1
8 files changed, 0 insertions, 9 deletions
diff --git a/contrib/pgcrypto/crypt-blowfish.c b/contrib/pgcrypto/crypt-blowfish.c
index eebf1877cfd..7cca92b6ab5 100644
--- a/contrib/pgcrypto/crypt-blowfish.c
+++ b/contrib/pgcrypto/crypt-blowfish.c
@@ -34,7 +34,6 @@
#include "postgres.h"
-#include "px.h"
#include "px-crypt.h"
#ifdef __i386__
diff --git a/contrib/pgcrypto/crypt-des.c b/contrib/pgcrypto/crypt-des.c
index 1f497432da7..e50c1f4a925 100644
--- a/contrib/pgcrypto/crypt-des.c
+++ b/contrib/pgcrypto/crypt-des.c
@@ -62,7 +62,6 @@
#include "postgres.h"
-#include "px.h"
#include "px-crypt.h"
/* for ntohl/htonl */
diff --git a/contrib/pgcrypto/crypt-gensalt.c b/contrib/pgcrypto/crypt-gensalt.c
index 84bf27bedb9..062ab864167 100644
--- a/contrib/pgcrypto/crypt-gensalt.c
+++ b/contrib/pgcrypto/crypt-gensalt.c
@@ -14,7 +14,6 @@
#include "postgres.h"
-#include "px.h"
#include "px-crypt.h"
typedef unsigned int BF_word;
diff --git a/contrib/pgcrypto/internal.c b/contrib/pgcrypto/internal.c
index fedfe2dd039..5ceb5271bbb 100644
--- a/contrib/pgcrypto/internal.c
+++ b/contrib/pgcrypto/internal.c
@@ -36,7 +36,6 @@
#include "px.h"
#include "md5.h"
#include "sha1.h"
-#include "sha2.h"
#include "blf.h"
#include "rijndael.h"
#include "fortuna.h"
diff --git a/contrib/pgcrypto/md5.c b/contrib/pgcrypto/md5.c
index b5071fba430..08227a809c7 100644
--- a/contrib/pgcrypto/md5.c
+++ b/contrib/pgcrypto/md5.c
@@ -35,7 +35,6 @@
#include <sys/param.h>
-#include "px.h"
#include "md5.h"
#define SHIFT(X, s) (((X) << (s)) | ((X) >> (32 - (s))))
diff --git a/contrib/pgcrypto/pgcrypto.c b/contrib/pgcrypto/pgcrypto.c
index d271ddc3029..c7588532a8e 100644
--- a/contrib/pgcrypto/pgcrypto.c
+++ b/contrib/pgcrypto/pgcrypto.c
@@ -33,7 +33,6 @@
#include <ctype.h>
-#include "fmgr.h"
#include "parser/scansup.h"
#include "utils/builtins.h"
diff --git a/contrib/pgcrypto/pgp-pgsql.c b/contrib/pgcrypto/pgp-pgsql.c
index f1f09cd83b7..c4c6b509776 100644
--- a/contrib/pgcrypto/pgp-pgsql.c
+++ b/contrib/pgcrypto/pgp-pgsql.c
@@ -31,8 +31,6 @@
#include "postgres.h"
-#include "fmgr.h"
-#include "parser/scansup.h"
#include "mb/pg_wchar.h"
#include "utils/builtins.h"
diff --git a/contrib/pgcrypto/sha1.c b/contrib/pgcrypto/sha1.c
index 4ee4f24559b..ac406faf7e9 100644
--- a/contrib/pgcrypto/sha1.c
+++ b/contrib/pgcrypto/sha1.c
@@ -40,7 +40,6 @@
#include <sys/param.h>
-#include "px.h"
#include "sha1.h"
/* constant table */