summaryrefslogtreecommitdiff
path: root/mpf/inits.c
diff options
context:
space:
mode:
Diffstat (limited to 'mpf/inits.c')
-rw-r--r--mpf/inits.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/mpf/inits.c b/mpf/inits.c
index ab993e2b1..3188cd806 100644
--- a/mpf/inits.c
+++ b/mpf/inits.c
@@ -17,35 +17,17 @@ License for more details.
You should have received a copy of the GNU Lesser General Public License
along with the GNU MP Library. If not, see https://www.gnu.org/licenses/. */
-#include "config.h"
-
-#if HAVE_STDARG
#include <stdarg.h>
-#else
-#include <varargs.h>
-#endif
-
#include <stdio.h> /* for NULL */
#include "gmp.h"
#include "gmp-impl.h"
void
-#if HAVE_STDARG
mpf_inits (mpf_ptr x, ...)
-#else
-mpf_inits (va_alist)
- va_dcl
-#endif
{
va_list ap;
-#if HAVE_STDARG
va_start (ap, x);
-#else
- mpf_ptr x;
- va_start (ap);
- x = va_arg (ap, mpf_ptr);
-#endif
while (x != NULL)
{