aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/stdio/setbuf.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/stdio/setbuf.c')
-rw-r--r--newlib/libc/stdio/setbuf.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/newlib/libc/stdio/setbuf.c b/newlib/libc/stdio/setbuf.c
index 1538762..f547186 100644
--- a/newlib/libc/stdio/setbuf.c
+++ b/newlib/libc/stdio/setbuf.c
@@ -65,8 +65,7 @@ Supporting OS subroutines required: <<close>>, <<fstat>>, <<isatty>>,
#include "local.h"
void
-_DEFUN(setbuf, (fp, buf),
- FILE *__restrict fp,
+setbuf (FILE *__restrict fp,
char *__restrict buf)
{
(void) setvbuf (fp, buf, buf ? _IOFBF : _IONBF, BUFSIZ);