diff options
Diffstat (limited to 'newlib/libc/stdio/siprintf.c')
-rw-r--r-- | newlib/libc/stdio/siprintf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/newlib/libc/stdio/siprintf.c b/newlib/libc/stdio/siprintf.c index 861fc8d..e336875 100644 --- a/newlib/libc/stdio/siprintf.c +++ b/newlib/libc/stdio/siprintf.c @@ -107,12 +107,12 @@ int _DEFUN(_siprintf_r, (ptr, str, fmt), struct _reent *ptr, char *str, - _CONST char *fmt _DOTS) + const char *fmt _DOTS) #else _siprintf_r(ptr, str, fmt, va_alist) struct _reent *ptr; char *str; - _CONST char *fmt; + const char *fmt; va_dcl #endif { @@ -141,11 +141,11 @@ int #ifdef _HAVE_STDC _DEFUN(siprintf, (str, fmt), char *str, - _CONST char *fmt _DOTS) + const char *fmt _DOTS) #else siprintf(str, fmt, va_alist) char *str; - _CONST char *fmt; + const char *fmt; va_dcl #endif { |