diff --git a/src/bin/psql/common.c b/src/bin/psql/common.c index f67c9a64443b7181b7eb95f4b2120abf76e939b2..55af65a3ae1cd2c3bad10b21981f7491b1ae61d6 100644 --- a/src/bin/psql/common.c +++ b/src/bin/psql/common.c @@ -3,10 +3,9 @@ * * Copyright 2000 by PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/psql/common.c,v 1.50 2002/10/24 01:33:50 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/common.c,v 1.51 2002/10/29 19:35:33 momjian Exp $ */ #include "postgres_fe.h" - #include "common.h" #include <errno.h> @@ -27,9 +26,6 @@ #ifndef WIN32 #include <sys/ioctl.h> /* for ioctl() */ -#else -#define popen(x,y) _popen(x,y) -#define pclose(x) _pclose(x) #endif #ifdef HAVE_TERMIOS_H diff --git a/src/bin/psql/common.h b/src/bin/psql/common.h index 29af2f648e904e065f1001a2357b0097b16f611d..3b0c7d8b5637f78c98267719ddf3f4e3fda85216 100644 --- a/src/bin/psql/common.h +++ b/src/bin/psql/common.h @@ -3,7 +3,7 @@ * * Copyright 2000 by PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/psql/common.h,v 1.20 2002/10/23 19:23:56 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/common.h,v 1.21 2002/10/29 19:35:33 momjian Exp $ */ #ifndef COMMON_H #define COMMON_H @@ -42,4 +42,10 @@ extern FILE *PageOutput(int lines, bool pager); /* sprompt.h */ extern char *simple_prompt(const char *prompt, int maxlen, bool echo); +/* Used for all Win32 popen/pclose calls */ +#ifdef WIN32 +#define popen(x,y) _popen(x,y) +#define pclose(x) _pclose(x) +#endif + #endif /* COMMON_H */