From 1cf0ee341fc61176176d11cfae6312778e750585 Mon Sep 17 00:00:00 2001 From: Alexandre Oliva Date: Fri, 10 Mar 2000 17:57:32 +0000 Subject: * libc/stdio/putw.c (putw): Return 0 on success, to be compliant with XSH5, not SVID. --- newlib/libc/stdio/putw.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'newlib/libc/stdio') diff --git a/newlib/libc/stdio/putw.c b/newlib/libc/stdio/putw.c index 4bcefaf7d..19f4abc01 100644 --- a/newlib/libc/stdio/putw.c +++ b/newlib/libc/stdio/putw.c @@ -37,10 +37,7 @@ DESCRIPTION to write a word to the file or stream identified by <[fp]>. As a side effect, <> advances the file's current position indicator. -RETURNS The written word, unless the host system reports a write -error, in which case <> returns <>. Since <> is a -valid <>, you must use <> or <> to distinguish -these situations when writing the integer equal to <>. +RETURNS Zero on success, <> on failure. PORTABILITY <> is a remnant of K&R C, it is not part of any ISO C Standard. @@ -62,5 +59,5 @@ putw (w, fp) { if (fwrite((const char*)&w, sizeof(w), 1, fp) != 1) return EOF; - return w; + return 0; } -- cgit v1.2.3