From: Peter Eisentraut Date: Wed, 19 Dec 2001 18:49:24 +0000 (+0000) Subject: Fix warning X-Git-Tag: REL7_2_BETA5~212 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f9d87c66db993788d74587e4163589894d5371bb;p=postgresql Fix warning --- diff --git a/contrib/chkpass/chkpass.c b/contrib/chkpass/chkpass.c index 7dfa95082a..b2e041f5ba 100644 --- a/contrib/chkpass/chkpass.c +++ b/contrib/chkpass/chkpass.c @@ -4,17 +4,21 @@ * darcy@druid.net * http://www.druid.net/darcy/ * - * $Id: chkpass.c,v 1.6 2001/11/05 17:46:22 momjian Exp $ + * $Id: chkpass.c,v 1.7 2001/12/19 18:49:24 petere Exp $ * 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.