aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/stdio/asnprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/stdio/asnprintf.c')
-rw-r--r--newlib/libc/stdio/asnprintf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/stdio/asnprintf.c b/newlib/libc/stdio/asnprintf.c
index e80ca06..c9a37db 100644
--- a/newlib/libc/stdio/asnprintf.c
+++ b/newlib/libc/stdio/asnprintf.c
@@ -18,7 +18,7 @@ _DEFUN(_asnprintf_r, (ptr, buf, lenp, fmt),
struct _reent *__restrict ptr,
char *buf,
size_t *lenp,
- const char *__restrict fmt _DOTS)
+ const char *__restrict fmt, ...)
{
int ret;
va_list ap;
@@ -70,7 +70,7 @@ char *
_DEFUN(asnprintf, (buf, lenp, fmt),
char *__restrict buf,
size_t *__restrict lenp,
- const char *__restrict fmt _DOTS)
+ const char *__restrict fmt, ...)
{
int ret;
va_list ap;