aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/stdio/snprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/stdio/snprintf.c')
-rw-r--r--newlib/libc/stdio/snprintf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/stdio/snprintf.c b/newlib/libc/stdio/snprintf.c
index aa7a636..ab33dfb 100644
--- a/newlib/libc/stdio/snprintf.c
+++ b/newlib/libc/stdio/snprintf.c
@@ -35,7 +35,7 @@ _DEFUN(_snprintf_r, (ptr, str, size, fmt),
struct _reent *ptr,
char *__restrict str,
size_t size,
- const char *__restrict fmt _DOTS)
+ const char *__restrict fmt, ...)
#else
_snprintf_r(ptr, str, size, fmt, va_alist)
struct _reent *ptr;
@@ -85,7 +85,7 @@ int
_DEFUN(snprintf, (str, size, fmt),
char *__restrict str,
size_t size,
- const char *__restrict fmt _DOTS)
+ const char *__restrict fmt, ...)
#else
snprintf(str, size, fmt, va_alist)
char *str;