diff options
author | Yaakov Selkowitz <yselkowi@redhat.com> | 2017-12-03 20:56:37 -0600 |
---|---|---|
committer | Yaakov Selkowitz <yselkowi@redhat.com> | 2018-01-17 11:47:17 -0600 |
commit | 670b01da7f04f785df5bed9cd8e22076aa6166d5 (patch) | |
tree | b8aaf51776e0a37aa03af1becae5c9f2c50c8d55 /newlib/libc/stdio/setbuf.c | |
parent | e6321aa6a668376c40bc2792a3bd392e94c29ad6 (diff) | |
download | newlib-670b01da7f04f785df5bed9cd8e22076aa6166d5.zip newlib-670b01da7f04f785df5bed9cd8e22076aa6166d5.tar.gz newlib-670b01da7f04f785df5bed9cd8e22076aa6166d5.tar.bz2 |
ansification: remove _CAST_VOID
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
Diffstat (limited to 'newlib/libc/stdio/setbuf.c')
-rw-r--r-- | newlib/libc/stdio/setbuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/stdio/setbuf.c b/newlib/libc/stdio/setbuf.c index a7df3a1..7308ab8 100644 --- a/newlib/libc/stdio/setbuf.c +++ b/newlib/libc/stdio/setbuf.c @@ -69,5 +69,5 @@ _DEFUN(setbuf, (fp, buf), FILE *__restrict fp, char *__restrict buf) { - _CAST_VOID setvbuf (fp, buf, buf ? _IOFBF : _IONBF, BUFSIZ); + (void) setvbuf (fp, buf, buf ? _IOFBF : _IONBF, BUFSIZ); } |