diff options
Diffstat (limited to 'newlib/libc/stdlib/utoa.c')
-rw-r--r-- | newlib/libc/stdlib/utoa.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/newlib/libc/stdlib/utoa.c b/newlib/libc/stdlib/utoa.c index 75e8616..cc54407 100644 --- a/newlib/libc/stdlib/utoa.c +++ b/newlib/libc/stdlib/utoa.c @@ -29,8 +29,8 @@ No supporting OS subroutine calls are required. char * _DEFUN (__utoa, (value, str, base), - unsigned value _AND - char *str _AND + unsigned value, + char *str, int base) { const char digits[] = "0123456789abcdefghijklmnopqrstuvwxyz"; @@ -68,8 +68,8 @@ _DEFUN (__utoa, (value, str, base), char * _DEFUN (utoa, (value, str, base), - unsigned value _AND - char *str _AND + unsigned value, + char *str, int base) { return __utoa (value, str, base); |