diff options
author | Bruce Momjian <bruce@momjian.us> | 2004-08-01 06:19:26 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2004-08-01 06:19:26 +0000 |
commit | ca9540d34f0ad97c5659cac30aab8a016bd9868c (patch) | |
tree | 38d0c9860cece52a106716af6ba22d95066ff5c2 /src/include/port.h | |
parent | e7029b212755594bbfb4325fffd2dbd7b00eef08 (diff) | |
download | postgresql-ca9540d34f0ad97c5659cac30aab8a016bd9868c.tar.gz postgresql-ca9540d34f0ad97c5659cac30aab8a016bd9868c.zip |
Add docs for initdb --auth.
Diffstat (limited to 'src/include/port.h')
-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 */ |