aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/stdio/asniprintf.c
diff options
context:
space:
mode:
authorYaakov Selkowitz <yselkowi@redhat.com>2017-12-03 20:28:42 -0600
committerYaakov Selkowitz <yselkowi@redhat.com>2018-01-17 11:47:10 -0600
commit2310096fbc94133d23abd9f12d6b67e2584a51a9 (patch)
tree99559d1a6e2deb94ea0596b2d02db32fa59fc3a0 /newlib/libc/stdio/asniprintf.c
parent0bda30e1ffd23488aa4a9b73f228089463fbee1a (diff)
downloadnewlib-2310096fbc94133d23abd9f12d6b67e2584a51a9.zip
newlib-2310096fbc94133d23abd9f12d6b67e2584a51a9.tar.gz
newlib-2310096fbc94133d23abd9f12d6b67e2584a51a9.tar.bz2
ansification: remove _DOTS
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
Diffstat (limited to 'newlib/libc/stdio/asniprintf.c')
-rw-r--r--newlib/libc/stdio/asniprintf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/stdio/asniprintf.c b/newlib/libc/stdio/asniprintf.c
index f033f1b..ba4772f 100644
--- a/newlib/libc/stdio/asniprintf.c
+++ b/newlib/libc/stdio/asniprintf.c
@@ -18,7 +18,7 @@ _DEFUN(_asniprintf_r, (ptr, buf, lenp, fmt),
struct _reent *ptr,
char *buf,
size_t *lenp,
- const char *fmt _DOTS)
+ const char *fmt, ...)
{
int ret;
va_list ap;
@@ -64,7 +64,7 @@ char *
_DEFUN(asniprintf, (buf, lenp, fmt),
char *buf,
size_t *lenp,
- const char *fmt _DOTS)
+ const char *fmt, ...)
{
int ret;
va_list ap;