aboutsummaryrefslogtreecommitdiff
path: root/src/port/open.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2005-07-28 04:03:14 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2005-07-28 04:03:14 +0000
commit06e1d62689d2d3ceca014b46476f81ef2d9ceeac (patch)
tree7f12da6bfc2ff6bc05a540151caa11b93970484e /src/port/open.c
parent420cfd03666d71aa1f5e7b8453072895f6fa4b04 (diff)
downloadpostgresql-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/open.c')
-rw-r--r--src/port/open.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/port/open.c b/src/port/open.c
index 6e1d37d3cba..fd7e010c1c9 100644
--- a/src/port/open.c
+++ b/src/port/open.c
@@ -6,17 +6,17 @@
*
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/port/open.c,v 1.9 2005/03/24 04:36:20 momjian Exp $
+ * $PostgreSQL: pgsql/src/port/open.c,v 1.10 2005/07/28 04:03:14 tgl Exp $
*
*-------------------------------------------------------------------------
*/
#ifdef WIN32
-#include <postgres.h>
+#include "c.h"
+
#include <windows.h>
#include <fcntl.h>
-#include <errno.h>
#include <assert.h>
int win32_open(const char *fileName, int fileFlags, ...);