Skip to content

Commit

Permalink
Be a bit more relaxed about obsoleted mktemp symbol.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ulrich Drepper committed Jan 13, 2010
1 parent 2e3e1b3 commit 52e96a8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2010-01-13 Ulrich Drepper <drepper@redhat.com>

* stdlib/stdlib.h: Be a bit more relaxed about obsoleted mktemp symbol.

2010-01-12 Ulrich Drepper <drepper@redhat.com>

* conform/data/complex.h-data: Test for POSIX2008.
Expand Down
4 changes: 2 additions & 2 deletions stdlib/stdlib.h
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 52e96a8

Please sign in to comment.