Reorder crypt.h include for SunOS compile problem.

Fred Houweling
This commit is contained in:
Bruce Momjian 2003-03-17 17:58:57 +00:00
parent aac4484345
commit 93b408ef86
1 changed files with 8 additions and 10 deletions

View File

@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $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 $
*
*-------------------------------------------------------------------------
*/
@ -22,6 +22,13 @@
#include <ctype.h>
#include <time.h>
#ifndef HAVE_STRDUP
#include "strdup.h"
#endif
#ifdef HAVE_CRYPT_H
#include <crypt.h>
#endif
#include "libpq-fe.h"
#include "libpq-int.h"
#include "fe-auth.h"
@ -40,15 +47,6 @@
#endif
#include "libpq/ip.h"
#ifndef HAVE_STRDUP
#include "strdup.h"
#endif
#ifdef HAVE_CRYPT_H
#include <crypt.h>
#endif
#include "mb/pg_wchar.h"