about summary refs log tree commit diff
path: root/Src/utils.c
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2003-02-05 10:56:56 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2003-02-05 10:56:56 +0000
commitf87232c120696b6e33b241e814d4e9b48efc13d7 (patch)
tree513f6389c40160caa61dc5451836755aeb32cae6 /Src/utils.c
parent50b77cd584077a8b8f8699c10b3195d82e82b1da (diff)
downloadzsh-f87232c120696b6e33b241e814d4e9b48efc13d7.tar.gz
zsh-f87232c120696b6e33b241e814d4e9b48efc13d7.tar.xz
zsh-f87232c120696b6e33b241e814d4e9b48efc13d7.zip
18086: I don't know how this got missed out...
Diffstat (limited to 'Src/utils.c')
-rw-r--r--Src/utils.c4
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)