summaryrefslogtreecommitdiff
path: root/mpf/inits.c
diff options
context:
space:
mode:
Diffstat (limited to 'mpf/inits.c')
-rw-r--r--mpf/inits.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/mpf/inits.c b/mpf/inits.c
index fb14c6b0f..ddcf1141a 100644
--- a/mpf/inits.c
+++ b/mpf/inits.c
@@ -1,6 +1,6 @@
/* mpf_inits() -- Initialize multiple mpf_t variables and set them to 0.
-Copyright 2009 Free Software Foundation, Inc.
+Copyright 2009, 2015 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
@@ -29,7 +29,6 @@ GNU Lesser General Public License along with the GNU MP Library. If not,
see https://www.gnu.org/licenses/. */
#include <stdarg.h>
-#include <stdio.h> /* for NULL */
#include "gmp.h"
#include "gmp-impl.h"
@@ -40,10 +39,12 @@ mpf_inits (mpf_ptr x, ...)
va_start (ap, x);
- while (x != NULL)
+ do
{
mpf_init (x);
x = va_arg (ap, mpf_ptr);
}
+ while (x != NULL);
+
va_end (ap);
}