1
0
mirror of https://sourceware.org/git/glibc.git synced 2026-01-06 11:51:29 +03:00
2005-01-07  Ulrich Drepper  <drepper@redhat.com>

	* libio/stdio.h: Remove __wur from rename and remove.
	* posix/unistd.h: Remove __wur from dup2.
This commit is contained in:
Ulrich Drepper
2005-01-07 19:30:51 +00:00
parent 3ded70368b
commit e2070ca2b4
3 changed files with 8 additions and 3 deletions

View 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