Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/stdio/putw.c')
-rw-r--r--newlib/libc/stdio/putw.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/newlib/libc/stdio/putw.c b/newlib/libc/stdio/putw.c
index 5377d87d3..a7907bef7 100644
--- a/newlib/libc/stdio/putw.c
+++ b/newlib/libc/stdio/putw.c
@@ -49,8 +49,7 @@ static char sccsid[] = "%W% (Berkeley) %G%";
#include <stdio.h>
int
-_DEFUN(putw, (w, fp),
- int w,
+putw (int w,
register FILE *fp)
{
if (fwrite ((const char*)&w, sizeof (w), 1, fp) != 1)