diff options
Diffstat (limited to 'src/backend/libpq/md5.c')
-rw-r--r-- | src/backend/libpq/md5.c | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/src/backend/libpq/md5.c b/src/backend/libpq/md5.c index 16a0ed5817c..ad5b4c91ec4 100644 --- a/src/backend/libpq/md5.c +++ b/src/backend/libpq/md5.c @@ -9,27 +9,20 @@ * generating hashed passwords from limited input. * * Sverre H. Huseby <sverrehu@online.no> + * + * $Header: /cvsroot/pgsql/src/backend/libpq/md5.c,v 1.6 2001/09/21 20:31:47 tgl Exp $ */ +#include "postgres.h" -#include <stdio.h> -#include <stdlib.h> -#include <string.h> #include <errno.h> -#include "postgres.h" #include "libpq/crypt.h" /* * PRIVATE FUNCTIONS */ -#ifdef FRONTEND -#undef palloc -#define palloc malloc -#undef pfree -#define pfree free -#endif /* * The returned array is allocated using malloc. the caller should free it |