diff options
author | Tom Lane | 2006-07-14 05:28:29 +0000 |
---|---|---|
committer | Tom Lane | 2006-07-14 05:28:29 +0000 |
commit | ae643747b16a6ffed88323338dcd3b7ed918e3d0 (patch) | |
tree | be809ebdd630bd1821dbd4a594fd7504a78009a8 /contrib/chkpass/chkpass.c | |
parent | 51e888219745cf9efa41034b5411eee7e9a8f4f1 (diff) |
Fix a passel of recently-committed violations of the rule 'thou shalt
have no other gods before c.h'. Also remove some demonstrably redundant
#include lines, mostly of <errno.h> which was added to c.h years ago.
Diffstat (limited to 'contrib/chkpass/chkpass.c')
-rw-r--r-- | contrib/chkpass/chkpass.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/contrib/chkpass/chkpass.c b/contrib/chkpass/chkpass.c index 04591bd154d..0842291eaf7 100644 --- a/contrib/chkpass/chkpass.c +++ b/contrib/chkpass/chkpass.c @@ -4,14 +4,12 @@ * http://www.druid.net/darcy/ * - * $PostgreSQL: pgsql/contrib/chkpass/chkpass.c,v 1.16 2006/05/30 22:12:12 tgl Exp $ + * $PostgreSQL: pgsql/contrib/chkpass/chkpass.c,v 1.17 2006/07/14 05:28:27 tgl Exp $ * best viewed with tabs set to 4 */ #include "postgres.h" -#include <stdio.h> -#include <string.h> #include <time.h> #include <unistd.h> #ifdef HAVE_CRYPT_H |