about summary refs log tree commit diff
path: root/libio
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2005-01-07 19:30:51 +0000
committerUlrich Drepper <drepper@redhat.com>2005-01-07 19:30:51 +0000
commite2070ca2b40d3c2dd20d110268ce7b4007a17f4f (patch)
treed9951341fd463e46ccdf377b1caa6928bd0267e1 /libio
parent3ded70368bd4af3ff26b39e907f6a361f2db65f7 (diff)
downloadglibc-e2070ca2b40d3c2dd20d110268ce7b4007a17f4f.tar.gz
glibc-e2070ca2b40d3c2dd20d110268ce7b4007a17f4f.tar.xz
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.
Diffstat (limited to 'libio')
-rw-r--r--libio/stdio.h4
1 files changed, 2 insertions, 2 deletions
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