summaryrefslogtreecommitdiff
path: root/tests/tvalist.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tvalist.c')
-rw-r--r--tests/tvalist.c17
1 files changed, 15 insertions, 2 deletions
diff --git a/tests/tvalist.c b/tests/tvalist.c
index bbaab64ce..74c6f3db8 100644
--- a/tests/tvalist.c
+++ b/tests/tvalist.c
@@ -35,12 +35,25 @@ http://www.gnu.org/licenses/ or write to the Free Software Foundation, Inc.,
#define MPFR_USE_FILE /* necessary due to GMP bug concerning inclusions */
#include <mpfr.h>
-int
-main (void)
+static void
+test (FILE *fout, const char *fmt, ...)
{
int (*fct) (FILE*, __gmp_const char*, va_list);
fct = mpfr_vfprintf;
+ if (0)
+ {
+ va_list ap;
+ va_start (ap, fmt);
+ fct (fout, fmt, ap);
+ va_end (ap);
+ }
+}
+
+int
+main (void)
+{
+ test (stdout, "%d\n", 0);
return 0;
}