From: Ulrich Drepper Date: Wed, 13 Jan 2010 15:15:17 +0000 (-0800) Subject: Be a bit more relaxed about obsoleted mktemp symbol. X-Git-Tag: upstream/2.30~13097 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=52e96a8092e4c0bfef5bd9748b35861bba6f6b88;p=external%2Fglibc.git Be a bit more relaxed about obsoleted mktemp symbol. --- diff --git a/ChangeLog b/ChangeLog index 61c64db..736bd5d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2010-01-13 Ulrich Drepper + + * stdlib/stdlib.h: Be a bit more relaxed about obsoleted mktemp symbol. + 2010-01-12 Ulrich Drepper * conform/data/complex.h-data: Test for POSIX2008. diff --git a/stdlib/stdlib.h b/stdlib/stdlib.h index 7575020..bac8ed6 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.