]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Fri, 7 Jan 2005 19:30:51 +0000 (19:30 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 7 Jan 2005 19:30:51 +0000 (19:30 +0000)
2005-01-07  Ulrich Drepper  <drepper@redhat.com>

* libio/stdio.h: Remove __wur from rename and remove.
* posix/unistd.h: Remove __wur from dup2.

ChangeLog
libio/stdio.h
posix/unistd.h

index 70ce0237670eba0d9f52dcaa290c0c2297c54a5c..774302a891b8149a9c3303131f0e5225f9f8b18a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-01-07  Ulrich Drepper  <drepper@redhat.com>
+
+       * libio/stdio.h: Remove __wur from rename and remove.
+       * posix/unistd.h: Remove __wur from dup2.
+
 2005-01-03  Andreas Jaeger  <aj@suse.de>
 
        * elf/Makefile (tests): Revert patch from 2005-01-03.
index 43064655b57c9ab22d4a93a9d5dd7949ac4e9b7c..b8d3594dac010d4502d90298d3c7b4d71268a0eb 100644 (file)
@@ -149,9 +149,9 @@ extern struct _IO_FILE *stderr;             /* Standard error output stream.  */
 
 __BEGIN_NAMESPACE_STD
 /* Remove file FILENAME.  */
-extern int remove (__const char *__filename) __THROW __wur;
+extern int remove (__const char *__filename) __THROW;
 /* Rename file OLD to NEW.  */
-extern int rename (__const char *__old, __const char *__new) __THROW __wur;
+extern int rename (__const char *__old, __const char *__new) __THROW;
 __END_NAMESPACE_STD
 
 
index 06c8ca7c2153b3602cb47fb0e0f565a141b996a7..744c10c50b646e015c94b7afb73fedfcf4b1a393 100644 (file)
@@ -468,7 +468,7 @@ extern char *getwd (char *__buf)
 extern int dup (int __fd) __THROW __wur;
 
 /* Duplicate FD to FD2, closing FD2 and making it open on the same file.  */
-extern int dup2 (int __fd, int __fd2) __THROW __wur;
+extern int dup2 (int __fd, int __fd2) __THROW;
 
 /* NULL-terminated array of "NAME=VALUE" environment variables.  */
 extern char **__environ;