We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14e1270 commit f9d87c6Copy full SHA for f9d87c6
contrib/chkpass/chkpass.c
@@ -4,17 +4,21 @@
4
* darcy@druid.net
5
* http://www.druid.net/darcy/
6
*
7
- * $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 $
8
* best viewed with tabs set to 4
9
*/
10
11
+#include "postgres.h"
12
+
13
#include <stdio.h>
14
#include <string.h>
15
#include <time.h>
16
#include <unistd.h>
17
+#ifdef HAVE_CRYPT_H
18
+#include <crypt.h>
19
+#endif
20
-#include <postgres.h>
-#include <fmgr.h>
21
+#include "fmgr.h"
22
23
/*
24
* This type encrypts it's input unless the first character is a colon.
0 commit comments