aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/stdio/setbuffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/stdio/setbuffer.c')
-rw-r--r--newlib/libc/stdio/setbuffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/stdio/setbuffer.c b/newlib/libc/stdio/setbuffer.c
index cbcbde3..6914ca7 100644
--- a/newlib/libc/stdio/setbuffer.c
+++ b/newlib/libc/stdio/setbuffer.c
@@ -70,5 +70,5 @@ _DEFUN(setbuffer, (fp, buf, size),
char *buf,
int size)
{
- _CAST_VOID setvbuf (fp, buf, buf ? _IOFBF : _IONBF, (size_t) size);
+ (void) setvbuf (fp, buf, buf ? _IOFBF : _IONBF, (size_t) size);
}