about summary refs log tree commit diff
path: root/libio/stdio.h
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2012-04-11 21:03:01 +0200
committerAndreas Jaeger <jaegerandi@gmail.com>2012-04-11 21:03:57 +0200
commit288f9098cb550efe1420f26fc3fc2563bb4ea109 (patch)
tree517f998dd982159c1c994ef4051dcc2149f27fc8 /libio/stdio.h
parent4be2b5700315a99c6828ad314ed3e45ecf1c1527 (diff)
downloadglibc-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/stdio.h')
-rw-r--r--libio/stdio.h6
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