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/port/sprompt.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/port/sprompt.c')
-rw-r--r-- | src/port/sprompt.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/port/sprompt.c b/src/port/sprompt.c index d6b0a71e96c..1e073153442 100644 --- a/src/port/sprompt.c +++ b/src/port/sprompt.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/port/sprompt.c,v 1.8 2004/08/29 05:07:02 momjian Exp $ + * $PostgreSQL: pgsql/src/port/sprompt.c,v 1.9 2004/09/27 19:16:02 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -30,11 +30,6 @@ #ifdef HAVE_TERMIOS_H #include <termios.h> -#else -#ifdef WIN32 -#include <windows.h> -#undef ERROR -#endif #endif bool prompt_state = false; |