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/putchar.c')
-rw-r--r--newlib/libc/stdio/putchar.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/newlib/libc/stdio/putchar.c b/newlib/libc/stdio/putchar.c
index 813144a2b..c52d38799 100644
--- a/newlib/libc/stdio/putchar.c
+++ b/newlib/libc/stdio/putchar.c
@@ -67,8 +67,7 @@ static char sccsid[] = "%W% (Berkeley) %G%";
#undef putchar
int
-_DEFUN(_putchar_r, (ptr, c),
- struct _reent *ptr,
+_putchar_r (struct _reent *ptr,
int c)
{
_REENT_SMALL_CHECK_INIT (ptr);
@@ -78,8 +77,7 @@ _DEFUN(_putchar_r, (ptr, c),
#ifndef _REENT_ONLY
int
-_DEFUN(putchar, (c),
- int c)
+putchar (int c)
{
struct _reent *reent = _REENT;