diff options
author | Bruce Momjian <bruce@momjian.us> | 2004-09-27 19:16:03 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2004-09-27 19:16:03 +0000 |
commit | 32b24bfa975f962e5bc61886ccc78cf656b6295c (patch) | |
tree | a2b415c410dae85c4c3cb4c6f7ed262a98933a55 /src/bin/psql/startup.c | |
parent | 7ceec70fc79a3c9bbda802b1464f05b791f28f2c (diff) | |
download | postgresql-32b24bfa975f962e5bc61886ccc78cf656b6295c.tar.gz postgresql-32b24bfa975f962e5bc61886ccc78cf656b6295c.zip |
Remove inclusion of windows.h now that it is included in c.h, per idea
from Peter.
Diffstat (limited to 'src/bin/psql/startup.c')
-rw-r--r-- | src/bin/psql/startup.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/bin/psql/startup.c b/src/bin/psql/startup.c index 06b0c06da90..e0aea1d3eb4 100644 --- a/src/bin/psql/startup.c +++ b/src/bin/psql/startup.c @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2004, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/startup.c,v 1.100 2004/09/13 23:07:12 neilc Exp $ + * $PostgreSQL: pgsql/src/bin/psql/startup.c,v 1.101 2004/09/27 19:16:02 momjian Exp $ */ #include "postgres_fe.h" @@ -13,7 +13,6 @@ #include <unistd.h> #else /* WIN32 */ #include <io.h> -#include <windows.h> #include <win32.h> #endif /* WIN32 */ |