about summary refs log tree commit diff
path: root/stdio/vasprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdio/vasprintf.c')
-rw-r--r--stdio/vasprintf.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/stdio/vasprintf.c b/stdio/vasprintf.c
index 57bacdbb17..47a074e6ca 100644
--- a/stdio/vasprintf.c
+++ b/stdio/vasprintf.c
@@ -56,10 +56,9 @@ enlarge_buffer (stream, c)
 /* Write formatted output from FORMAT to a string which is
    allocated with malloc and stored in *STRING_PTR.  */
 int
-vasprintf (string_ptr, format, args)
-     char **string_ptr;
-     const char *format;
-     va_list args;
+vasprintf (char **string_ptr,
+	   const char *format,
+	   va_list args)
 {
   FILE f;
   int done;