diff options
Diffstat (limited to 'stdio-common/dprintf.c')
-rw-r--r-- | stdio-common/dprintf.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/stdio-common/dprintf.c b/stdio-common/dprintf.c index 5746d49841..611a6030a1 100644 --- a/stdio-common/dprintf.c +++ b/stdio-common/dprintf.c @@ -26,9 +26,7 @@ Cambridge, MA 02139, USA. */ /* Write formatted output to D, according to the format string FORMAT. */ /* VARARGS2 */ int -dprintf (d, format) - int d; - const char *format; +dprintf (int d, const char *format, ...) { va_list arg; int done; |