diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-09-02 02:47:07 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-09-02 02:47:07 +0000 |
commit | 97ac103289a3c751fc99967ac37c2555cbe00473 (patch) | |
tree | d2caa3cea0ef12cd52aa39d4a8ec6f620b246313 /src/backend/executor/nodeHash.c | |
parent | 248c67d7ed505d98d3a94cd3954835255317ff16 (diff) | |
download | postgresql-97ac103289a3c751fc99967ac37c2555cbe00473.tar.gz postgresql-97ac103289a3c751fc99967ac37c2555cbe00473.zip |
Remove sys/types.h in files that include postgres.h, and hence c.h,
because c.h has sys/types.h.
Diffstat (limited to 'src/backend/executor/nodeHash.c')
-rw-r--r-- | src/backend/executor/nodeHash.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/backend/executor/nodeHash.c b/src/backend/executor/nodeHash.c index 92102486c21..466452df8e0 100644 --- a/src/backend/executor/nodeHash.c +++ b/src/backend/executor/nodeHash.c @@ -7,7 +7,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * - * $Id: nodeHash.c,v 1.64 2002/08/24 15:00:46 tgl Exp $ + * $Id: nodeHash.c,v 1.65 2002/09/02 02:47:02 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -19,7 +19,6 @@ */ #include "postgres.h" -#include <sys/types.h> #include <math.h> #include "access/hash.h" |