diff options
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/port.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/port.h b/src/include/port.h index 9869674a362..ac3634e0eef 100644 --- a/src/include/port.h +++ b/src/include/port.h @@ -6,7 +6,7 @@ * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/port.h,v 1.45 2004/07/23 01:58:36 momjian Exp $ + * $PostgreSQL: pgsql/src/include/port.h,v 1.46 2004/08/01 06:19:24 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -148,6 +148,8 @@ extern int pgunlink(const char *path); #define unlink(path) pgunlink(path) #endif +extern bool rmtree(char *path, bool rmtopdir); + #ifdef WIN32 /* open() replacement to allow delete of held files */ |