summaryrefslogtreecommitdiff
path: root/Build/source/libs/mpfr/mpfr-src/src/printf.c
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/libs/mpfr/mpfr-src/src/printf.c')
-rw-r--r--Build/source/libs/mpfr/mpfr-src/src/printf.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/Build/source/libs/mpfr/mpfr-src/src/printf.c b/Build/source/libs/mpfr/mpfr-src/src/printf.c
index 4561604d18f..7b5f0620c61 100644
--- a/Build/source/libs/mpfr/mpfr-src/src/printf.c
+++ b/Build/source/libs/mpfr/mpfr-src/src/printf.c
@@ -1,6 +1,6 @@
/* Formatted output functions (printf functions family).
-Copyright 2007-2019 Free Software Foundation, Inc.
+Copyright 2007-2020 Free Software Foundation, Inc.
Contributed by the AriC and Caramba projects, INRIA.
This file is part of the GNU MPFR Library.
@@ -30,17 +30,6 @@ https://www.gnu.org/licenses/ or write to the Free Software Foundation, Inc.,
#include <stdarg.h>
-#ifndef HAVE_VA_COPY
-# ifdef HAVE___VA_COPY
-# define va_copy(dst,src) __va_copy(dst, src)
-# else
-/* autoconf manual advocates this fallback.
- This is also the solution chosen by gmp */
-# define va_copy(dst,src) \
- do { memcpy(&(dst), &(src), sizeof(va_list)); } while (0)
-# endif /* HAVE___VA_COPY */
-#endif /* HAVE_VA_COPY */
-
#include "mpfr-impl.h"
#ifdef _MPFR_H_HAVE_FILE