diff options
Diffstat (limited to 'src/include/port.h')
-rw-r--r-- | src/include/port.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/port.h b/src/include/port.h index 76bec0a4ba6..95e5531c931 100644 --- a/src/include/port.h +++ b/src/include/port.h @@ -6,7 +6,7 @@ * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/port.h,v 1.79 2005/07/06 21:40:09 momjian Exp $ + * $PostgreSQL: pgsql/src/include/port.h,v 1.80 2005/08/02 19:02:32 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -206,6 +206,8 @@ extern int pgsymlink(const char *oldpath, const char *newpath); #endif /* defined(WIN32) || defined(__CYGWIN__) */ +extern void copydir(char *fromdir, char *todir, bool recurse); + extern bool rmtree(char *path, bool rmtopdir); #if defined(WIN32) && !defined(__CYGWIN__) @@ -223,8 +225,6 @@ extern int win32_open(const char *, int,...); #define pclose(a) _pclose(a) #endif -extern int copydir(char *fromdir, char *todir); - /* Missing rand functions */ extern long lrand48(void); extern void srand48(long seed); |