diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2006-08-22 02:42:47 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2006-08-22 02:42:47 +0000 |
commit | a6624c7cb7f47281f01834c00d31322dfe9b16f2 (patch) | |
tree | 8f9619816ca742397dc8ef00048607184c980a96 /libc/stdlib/mkdtemp.c | |
parent | 7eac2221e41a367288359189d4bc557ae367c01a (diff) | |
download | uClibc-alpine-a6624c7cb7f47281f01834c00d31322dfe9b16f2.tar.bz2 uClibc-alpine-a6624c7cb7f47281f01834c00d31322dfe9b16f2.tar.xz |
Merge from trunk.
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 |