diff options
Diffstat (limited to 'src/include/port.h')
-rw-r--r-- | src/include/port.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/port.h b/src/include/port.h index 0ffcfcb81d9..c117a38f110 100644 --- a/src/include/port.h +++ b/src/include/port.h @@ -476,6 +476,9 @@ extern int pg_check_dir(const char *dir); /* port/pgmkdirp.c */ extern int pg_mkdir_p(char *path, int omode); +/* port/mkdtemp.c */ +extern char *mkdtemp(char *path); + /* port/pqsignal.c */ typedef void (*pqsigfunc) (int signo); extern pqsigfunc pqsignal(int signo, pqsigfunc func); |