summaryrefslogtreecommitdiff
path: root/libio/iofwrite_u.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-06-08 06:17:50 +0000
committerUlrich Drepper <drepper@redhat.com>2000-06-08 06:17:50 +0000
commita27c96b0b15a9582137436dd58f510da02483b8d (patch)
tree50dd6e2a565928d29d8eb6e0e1e0c6402c63ade3 /libio/iofwrite_u.c
parent777414995d5bcf21a64c2b9bf919d8abe33b4713 (diff)
Update.
* libio/iofwrite_u.c (fwrite_unlocked): Remove obsolete comment. * libio/iofwrite.c (_IO_fwrite): Likewise.
Diffstat (limited to 'libio/iofwrite_u.c')
-rw-r--r--libio/iofwrite_u.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/libio/iofwrite_u.c b/libio/iofwrite_u.c
index acb5b2f527..b9f0816ddf 100644
--- a/libio/iofwrite_u.c
+++ b/libio/iofwrite_u.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1993, 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+/* Copyright (C) 1993, 96, 97, 98, 99, 2000 Free Software Foundation, Inc.
This file is part of the GNU IO Library.
This library is free software; you can redistribute it and/or
@@ -38,10 +38,8 @@ fwrite_unlocked (buf, size, count, fp)
_IO_size_t request = size * count;
_IO_size_t written = 0;
CHECK_FILE (fp, 0);
- /* Many traditional implementations return 0 if size==0 && count > 0,
- but ANSI requires us to return count in this case. */
if (request == 0)
- return count;
+ return 0;
if (_IO_fwide (fp, -1) == -1)
{
written = _IO_sputn (fp, (const char *) buf, request);