aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/stdio/sniprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/stdio/sniprintf.c')
-rw-r--r--newlib/libc/stdio/sniprintf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/newlib/libc/stdio/sniprintf.c b/newlib/libc/stdio/sniprintf.c
index 65e5b06..90e3027 100644
--- a/newlib/libc/stdio/sniprintf.c
+++ b/newlib/libc/stdio/sniprintf.c
@@ -36,13 +36,13 @@ _DEFUN (_sniprintf_r, (ptr, str, size, fmt),
struct _reent *ptr,
char *str,
size_t size,
- _CONST char *fmt _DOTS)
+ const char *fmt _DOTS)
#else
_sniprintf_r (ptr, str, size, fmt, va_alist)
struct _reent *ptr;
char *str;
size_t size;
- _CONST char *fmt;
+ const char *fmt;
va_dcl
#endif
{
@@ -80,12 +80,12 @@ int
_DEFUN (sniprintf, (str, size, fmt),
char *str,
size_t size,
- _CONST char *fmt _DOTS)
+ const char *fmt _DOTS)
#else
sniprintf (str, size, fmt, va_alist)
char *str;
size_t size;
- _CONST char *fmt;
+ const char *fmt;
va_dcl
#endif
{