aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/stdio/vfwprintf.c
diff options
context:
space:
mode:
authorYaakov Selkowitz <yselkowi@redhat.com>2017-12-03 20:41:16 -0600
committerYaakov Selkowitz <yselkowi@redhat.com>2018-01-17 11:47:13 -0600
commiteea249da3bc81776246ad5163f5eb887afdd3659 (patch)
tree610f12206d520381c1ef4370720522f304bed2c8 /newlib/libc/stdio/vfwprintf.c
parente13e191b6052a62701d8fb22c3660df23d3b6ec1 (diff)
downloadnewlib-eea249da3bc81776246ad5163f5eb887afdd3659.zip
newlib-eea249da3bc81776246ad5163f5eb887afdd3659.tar.gz
newlib-eea249da3bc81776246ad5163f5eb887afdd3659.tar.bz2
ansification: remove _PARAMS
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
Diffstat (limited to 'newlib/libc/stdio/vfwprintf.c')
-rw-r--r--newlib/libc/stdio/vfwprintf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/newlib/libc/stdio/vfwprintf.c b/newlib/libc/stdio/vfwprintf.c
index ad684a2..1054eb9 100644
--- a/newlib/libc/stdio/vfwprintf.c
+++ b/newlib/libc/stdio/vfwprintf.c
@@ -228,8 +228,8 @@ _DEFUN(__sbwprintf, (rptr, fp, fmt, ap),
# ifdef _NO_LONGDBL
-extern char *_dtoa_r _PARAMS((struct _reent *, double, int,
- int, int *, int *, char **));
+extern char *_dtoa_r (struct _reent *, double, int,
+ int, int *, int *, char **);
# define _PRINTF_FLOAT_TYPE double
# define _DTOA_R _dtoa_r
@@ -237,8 +237,8 @@ extern char *_dtoa_r _PARAMS((struct _reent *, double, int,
# else /* !_NO_LONGDBL */
-extern char *_ldtoa_r _PARAMS((struct _reent *, _LONG_DOUBLE, int,
- int, int *, int *, char **));
+extern char *_ldtoa_r (struct _reent *, _LONG_DOUBLE, int,
+ int, int *, int *, char **);
extern int _EXFUN(_ldcheck,(_LONG_DOUBLE *));