diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2005-07-28 04:03:14 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2005-07-28 04:03:14 +0000 |
commit | 06e1d62689d2d3ceca014b46476f81ef2d9ceeac (patch) | |
tree | 7f12da6bfc2ff6bc05a540151caa11b93970484e /src/port/crypt.c | |
parent | 420cfd03666d71aa1f5e7b8453072895f6fa4b04 (diff) | |
download | postgresql-06e1d62689d2d3ceca014b46476f81ef2d9ceeac.tar.gz postgresql-06e1d62689d2d3ceca014b46476f81ef2d9ceeac.zip |
Fix a whole bunch of #includes that were either wrong or redundant.
The first rule of portability for us is 'thou shalt have no other gods
before c.h', and a whole lot of these files were either not including
c.h at all, or including random system headers beforehand, either of
which sins can mess up largefile support nicely. Once you have
included c.h, there is no need to re-include what it includes, either.
Diffstat (limited to 'src/port/crypt.c')
-rw-r--r-- | src/port/crypt.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/port/crypt.c b/src/port/crypt.c index 2c71be98a94..5488fe60ce2 100644 --- a/src/port/crypt.c +++ b/src/port/crypt.c @@ -43,10 +43,7 @@ __RCSID("$NetBSD: crypt.c,v 1.18 2001/03/01 14:37:35 wiz Exp $"); #include "c.h" -#include <stddef.h> -#include <sys/types.h> #include <limits.h> -#include <stdlib.h> #ifndef WIN32 #include <unistd.h> |