diff options
author | Ulrich Drepper <drepper@redhat.com> | 2010-01-13 07:15:17 -0800 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2010-01-13 07:15:17 -0800 |
commit | 52e96a8092e4c0bfef5bd9748b35861bba6f6b88 (patch) | |
tree | 90b6a2193748ab55448ca8c845300027993ba86d /stdlib | |
parent | 2e3e1b3309f8a8d86c6b5f97cc6c347c05a0e44b (diff) | |
download | glibc-52e96a8092e4c0bfef5bd9748b35861bba6f6b88.tar glibc-52e96a8092e4c0bfef5bd9748b35861bba6f6b88.tar.gz glibc-52e96a8092e4c0bfef5bd9748b35861bba6f6b88.tar.bz2 glibc-52e96a8092e4c0bfef5bd9748b35861bba6f6b88.zip |
Be a bit more relaxed about obsoleted mktemp symbol.
Diffstat (limited to 'stdlib')
-rw-r--r-- | stdlib/stdlib.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/stdlib.h b/stdlib/stdlib.h index 75750205c8..bac8ed65be 100644 --- a/stdlib/stdlib.h +++ b/stdlib/stdlib.h @@ -597,8 +597,8 @@ extern int clearenv (void) __THROW; #endif -#if ((defined __USE_MISC || defined __USE_XOPEN_EXTENDED) \ - && !defined __USE_XOPEN2K) || defined __USE_GNU +#if defined __USE_MISC \ + || (defined __USE_XOPEN_EXTENDED && !defined __USE_XOPEN2K) /* Generate a unique temporary file name from TEMPLATE. The last six characters of TEMPLATE must be "XXXXXX"; they are replaced with a string that makes the file name unique. |