aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/stdio/sprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/stdio/sprintf.c')
-rw-r--r--newlib/libc/stdio/sprintf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/stdio/sprintf.c b/newlib/libc/stdio/sprintf.c
index 1948ff1..35d3961 100644
--- a/newlib/libc/stdio/sprintf.c
+++ b/newlib/libc/stdio/sprintf.c
@@ -583,7 +583,7 @@ int
_DEFUN(_sprintf_r, (ptr, str, fmt),
struct _reent *ptr,
char *__restrict str,
- const char *__restrict fmt _DOTS)
+ const char *__restrict fmt, ...)
#else
_sprintf_r(ptr, str, fmt, va_alist)
struct _reent *ptr;
@@ -623,7 +623,7 @@ int
#ifdef _HAVE_STDC
_DEFUN(sprintf, (str, fmt),
char *__restrict str,
- const char *__restrict fmt _DOTS)
+ const char *__restrict fmt, ...)
#else
sprintf(str, fmt, va_alist)
char *str;