From 56d15e613ec18b85593cf1b96a07d42c2a65b619 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Wed, 19 Dec 2001 18:49:24 +0000 Subject: [PATCH] Fix warning --- contrib/chkpass/chkpass.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/contrib/chkpass/chkpass.c b/contrib/chkpass/chkpass.c index 7b6c9af9b8..a5cbf87bc6 100644 --- a/contrib/chkpass/chkpass.c +++ b/contrib/chkpass/chkpass.c @@ -8,13 +8,17 @@ * best viewed with tabs set to 4 */ +#include "postgres.h" + #include #include #include #include +#ifdef HAVE_CRYPT_H +#include +#endif -#include -#include +#include "fmgr.h" /* * This type encrypts it's input unless the first character is a colon. -- 2.39.5