diff options
author | Jim Meyering <meyering@redhat.com> | 2012-04-11 21:03:01 +0200 |
---|---|---|
committer | Andreas Jaeger <jaegerandi@gmail.com> | 2012-04-11 21:03:57 +0200 |
commit | 288f9098cb550efe1420f26fc3fc2563bb4ea109 (patch) | |
tree | 517f998dd982159c1c994ef4051dcc2149f27fc8 /libio | |
parent | 4be2b5700315a99c6828ad314ed3e45ecf1c1527 (diff) | |
download | glibc-288f9098cb550efe1420f26fc3fc2563bb4ea109.tar.gz glibc-288f9098cb550efe1420f26fc3fc2563bb4ea109.tar.xz glibc-288f9098cb550efe1420f26fc3fc2563bb4ea109.zip |
Remove __wur from fwrite, fwrite_unlocked
[BZ #11959] * libio/stdio.h (fwrite, fwrite_unlocked): Remove __wur. It is not necessarily an error to ignore fwrite's return value. One can reliably use ferror to test for errors after the fact.
Diffstat (limited to 'libio')
-rw-r--r-- | libio/stdio.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libio/stdio.h b/libio/stdio.h index 9ca3ad3a28..8f495141f0 100644 --- a/libio/stdio.h +++ b/libio/stdio.h @@ -1,5 +1,5 @@ /* Define ISO C stdio on top of C++ iostreams. - Copyright (C) 1991, 1994-2011, 2012 Free Software Foundation, Inc. + Copyright (C) 1991, 1994-2012 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -713,7 +713,7 @@ extern size_t fread (void *__restrict __ptr, size_t __size, This function is a possible cancellation point and therefore not marked with __THROW. */ extern size_t fwrite (const void *__restrict __ptr, size_t __size, - size_t __n, FILE *__restrict __s) __wur; + size_t __n, FILE *__restrict __s); __END_NAMESPACE_STD #ifdef __USE_GNU @@ -737,7 +737,7 @@ extern int fputs_unlocked (const char *__restrict __s, extern size_t fread_unlocked (void *__restrict __ptr, size_t __size, size_t __n, FILE *__restrict __stream) __wur; extern size_t fwrite_unlocked (const void *__restrict __ptr, size_t __size, - size_t __n, FILE *__restrict __stream) __wur; + size_t __n, FILE *__restrict __stream); #endif |