diff options
Diffstat (limited to 'newlib/libc/stdio/putw.c')
-rw-r--r-- | newlib/libc/stdio/putw.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/newlib/libc/stdio/putw.c b/newlib/libc/stdio/putw.c index 78406eeb4..682015c0a 100644 --- a/newlib/libc/stdio/putw.c +++ b/newlib/libc/stdio/putw.c @@ -37,10 +37,11 @@ DESCRIPTION to write a word to the file or stream identified by <[fp]>. As a side effect, <<putw>> advances the file's current position indicator. -RETURNS Zero on success, <<EOF>> on failure. +RETURNS +Zero on success, <<EOF>> on failure. PORTABILITY -<<putw>> is a remnant of K&R C, it is not part of any ISO C Standard. +<<putw>> is a remnant of K&R C; it is not part of any ISO C Standard. <<fwrite>> should be used instead. In fact, this implementation of <<putw>> is based upon <<fwrite>>. |