diff options
Diffstat (limited to 'src/bin/psql/command.c')
-rw-r--r-- | src/bin/psql/command.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c index 351813feb8e..7523f67eb63 100644 --- a/src/bin/psql/command.c +++ b/src/bin/psql/command.c @@ -3,11 +3,15 @@ * * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/command.c,v 1.142 2005/03/16 21:27:23 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/command.c,v 1.143 2005/04/29 13:42:20 momjian Exp $ */ #include "postgres_fe.h" #include "command.h" +#ifdef WIN32_CLIENT_ONLY /* needed for BCC */ +#undef mkdir +#endif + #include <errno.h> #include <ctype.h> #ifdef HAVE_PWD_H |