diff options
Diffstat (limited to 'src/interfaces/libpq/fe-auth.c')
-rw-r--r-- | src/interfaces/libpq/fe-auth.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/interfaces/libpq/fe-auth.c b/src/interfaces/libpq/fe-auth.c index e496f7c3ee5..bb60bb1ceb9 100644 --- a/src/interfaces/libpq/fe-auth.c +++ b/src/interfaces/libpq/fe-auth.c @@ -10,7 +10,7 @@ * exceed INITIAL_EXPBUFFER_SIZE (currently 256 bytes). * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-auth.c,v 1.59 2001/09/07 19:52:54 momjian Exp $ + * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-auth.c,v 1.60 2001/09/21 20:31:49 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -30,12 +30,6 @@ #include "postgres_fe.h" -/* XXX is there a reason these appear before the system defines? */ -#include "libpq-fe.h" -#include "libpq-int.h" -#include "fe-auth.h" -#include "libpq/crypt.h" - #ifdef WIN32 #include "win32.h" #else @@ -59,6 +53,11 @@ #include <crypt.h> #endif +#include "libpq-fe.h" +#include "libpq-int.h" +#include "fe-auth.h" +#include "libpq/crypt.h" + /* * common definitions for generic fe/be routines |