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 aac4484 commit 93b408eCopy full SHA for 93b408e
src/interfaces/libpq/fe-connect.c
@@ -8,7 +8,7 @@
8
*
9
10
* IDENTIFICATION
11
- * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.225 2003/03/10 22:28:21 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.226 2003/03/17 17:58:57 momjian Exp $
12
13
*-------------------------------------------------------------------------
14
*/
@@ -22,6 +22,13 @@
22
#include <ctype.h>
23
#include <time.h>
24
25
+#ifndef HAVE_STRDUP
26
+#include "strdup.h"
27
+#endif
28
+#ifdef HAVE_CRYPT_H
29
+#include <crypt.h>
30
31
+
32
#include "libpq-fe.h"
33
#include "libpq-int.h"
34
#include "fe-auth.h"
@@ -40,15 +47,6 @@
40
47
#endif
41
48
42
49
#include "libpq/ip.h"
43
-
44
45
-#ifndef HAVE_STRDUP
46
-#include "strdup.h"
-#endif
-#ifdef HAVE_CRYPT_H
-#include <crypt.h>
50
51
52
#include "mb/pg_wchar.h"
53
54
0 commit comments