diff options
author | Ulrich Drepper <drepper@redhat.com> | 2005-01-07 19:30:51 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2005-01-07 19:30:51 +0000 |
commit | e2070ca2b40d3c2dd20d110268ce7b4007a17f4f (patch) | |
tree | d9951341fd463e46ccdf377b1caa6928bd0267e1 | |
parent | 3ded70368bd4af3ff26b39e907f6a361f2db65f7 (diff) | |
download | glibc-e2070ca2b40d3c2dd20d110268ce7b4007a17f4f.tar glibc-e2070ca2b40d3c2dd20d110268ce7b4007a17f4f.tar.gz glibc-e2070ca2b40d3c2dd20d110268ce7b4007a17f4f.tar.bz2 glibc-e2070ca2b40d3c2dd20d110268ce7b4007a17f4f.zip |
Update.
2005-01-07 Ulrich Drepper <drepper@redhat.com>
* libio/stdio.h: Remove __wur from rename and remove.
* posix/unistd.h: Remove __wur from dup2.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | libio/stdio.h | 4 | ||||
-rw-r--r-- | posix/unistd.h | 2 |
3 files changed, 8 insertions, 3 deletions
@@ -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. diff --git a/libio/stdio.h b/libio/stdio.h index 43064655b5..b8d3594dac 100644 --- a/libio/stdio.h +++ b/libio/stdio.h @@ -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 diff --git a/posix/unistd.h b/posix/unistd.h index 06c8ca7c21..744c10c50b 100644 --- a/posix/unistd.h +++ b/posix/unistd.h @@ -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; |