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/stdlib/itoa.c')
-rw-r--r--newlib/libc/stdlib/itoa.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/newlib/libc/stdlib/itoa.c b/newlib/libc/stdlib/itoa.c
index 25e6c3516..7a7daf0ce 100644
--- a/newlib/libc/stdlib/itoa.c
+++ b/newlib/libc/stdlib/itoa.c
@@ -30,8 +30,7 @@ No supporting OS subroutine calls are required.
#include <stdlib.h>
char *
-_DEFUN (__itoa, (value, str, base),
- int value,
+__itoa (int value,
char *str,
int base)
{
@@ -60,8 +59,7 @@ _DEFUN (__itoa, (value, str, base),
}
char *
-_DEFUN (itoa, (value, str, base),
- int value,
+itoa (int value,
char *str,
int base)
{