aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/stdio/asprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/stdio/asprintf.c')
-rw-r--r--newlib/libc/stdio/asprintf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/stdio/asprintf.c b/newlib/libc/stdio/asprintf.c
index 1e75174..b3d9122 100644
--- a/newlib/libc/stdio/asprintf.c
+++ b/newlib/libc/stdio/asprintf.c
@@ -28,7 +28,7 @@ int
_DEFUN(_asprintf_r, (ptr, strp, fmt),
struct _reent *ptr,
char **__restrict strp,
- const char *__restrict fmt _DOTS)
+ const char *__restrict fmt, ...)
{
int ret;
va_list ap;
@@ -61,7 +61,7 @@ _EXFUN(_asiprintf_r, (struct _reent *, char **, const char *, ...)
int
_DEFUN(asprintf, (strp, fmt),
char **__restrict strp,
- const char *__restrict fmt _DOTS)
+ const char *__restrict fmt, ...)
{
int ret;
va_list ap;