diff options
Diffstat (limited to 'libc/stdlib/mkdtemp.c')
-rw-r--r-- | libc/stdlib/mkdtemp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/stdlib/mkdtemp.c b/libc/stdlib/mkdtemp.c index e1ece812f..20a2e16bc 100644 --- a/libc/stdlib/mkdtemp.c +++ b/libc/stdlib/mkdtemp.c @@ -21,6 +21,7 @@ #include <stdlib.h> #include "../misc/internals/tempname.h" +#ifdef __USE_BSD /* Generate a unique temporary directory name from TEMPLATE. The last six characters of TEMPLATE must be "XXXXXX"; they are replaced with a string that makes the filename unique. @@ -34,3 +35,4 @@ char * mkdtemp (char *template) return template; } +#endif |