diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2003-02-05 10:56:56 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2003-02-05 10:56:56 +0000 |
commit | f87232c120696b6e33b241e814d4e9b48efc13d7 (patch) | |
tree | 513f6389c40160caa61dc5451836755aeb32cae6 | |
parent | 50b77cd584077a8b8f8699c10b3195d82e82b1da (diff) | |
download | zsh-f87232c120696b6e33b241e814d4e9b48efc13d7.tar.gz zsh-f87232c120696b6e33b241e814d4e9b48efc13d7.tar.xz zsh-f87232c120696b6e33b241e814d4e9b48efc13d7.zip |
18086: I don't know how this got missed out...
-rw-r--r-- | Src/utils.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Src/utils.c b/Src/utils.c index a043c101f..8534a64cc 100644 --- a/Src/utils.c +++ b/Src/utils.c @@ -1098,6 +1098,10 @@ zclose(int fd) /* Get a file name relative to $TMPPREFIX which * * is unique, for use as a temporary file. */ +#ifdef HAVE__MKTEMP +extern char *_mktemp(char *); +#endif + /**/ mod_export char * gettempname(void) |