diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-01-29 17:48:54 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-01-29 18:31:16 +0100 |
commit | 7c721d31e4b7a0bdf6f803b8e7c38996bf60b59f (patch) | |
tree | 217d8054855c8c3b57c1d9ac24d83641aa566253 /include/stdio.h | |
parent | fba639dcdcc2f3fede71e8bcd1a1a525a7f57d61 (diff) |
tmpnam, tempnam are obsolete in SUSV4
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'include/stdio.h')
-rw-r--r-- | include/stdio.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/include/stdio.h b/include/stdio.h index 45d3e4991..289b861a5 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -114,7 +114,7 @@ typedef __STDIO_fpos64_t fpos64_t; #if defined __USE_SVID || defined __USE_XOPEN -/* Default path prefix for `tempnam' and `tmpnam'. */ +/* Default path prefix for `mkstemp'. */ # define P_tmpdir "/tmp" #endif @@ -173,18 +173,20 @@ extern FILE *__REDIRECT (tmpfile, (void), tmpfile64) __wur; extern FILE *tmpfile64 (void) __wur; #endif +#ifdef __UCLIBC_SUSV4_LEGACY__ /* Generate a temporary filename. */ extern char *tmpnam (char *__s) __THROW __wur; +#endif __END_NAMESPACE_STD -#ifdef __USE_MISC +#if defined __USE_MISC && defined __UCLIBC_SUSV4_LEGACY__ /* This is the reentrant variant of `tmpnam'. The only difference is that it does not allow S to be NULL. */ extern char *tmpnam_r (char *__s) __THROW __wur; #endif -#if defined __USE_SVID || defined __USE_XOPEN +#if (defined __USE_SVID || defined __USE_XOPEN) && defined __UCLIBC_SUSV4_LEGACY__ /* Generate a unique temporary filename using up to five characters of PFX if it is not NULL. The directory to put this file in is searched for as follows: First the environment variable "TMPDIR" is checked. |