diff options
author | vlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4> | 2015-05-23 23:09:18 +0000 |
---|---|---|
committer | vlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4> | 2015-05-23 23:09:18 +0000 |
commit | 6c18ae8cf21ef1c8c078704d2164522505fa9764 (patch) | |
tree | 9ddd3c55a1d2201dcefa10197c551d9b6a07e82e | |
parent | 3718eb180f5c850abb8b7e31524c5745d7778dc7 (diff) | |
download | mpfr-6c18ae8cf21ef1c8c078704d2164522505fa9764.tar.gz |
[tests/{tstdint.c,tvalist.c}] Added missing #include "mpfr-test.h"
(detected with gcc -Werror=implicit-function-declaration), needed
since r9448.
(merged changeset r9453 from the trunk)
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/branches/3.1@9454 280ebfd0-de03-0410-8827-d642c229c3f4
-rw-r--r-- | tests/tstdint.c | 2 | ||||
-rw-r--r-- | tests/tvalist.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/tests/tstdint.c b/tests/tstdint.c index 16057f5bf..4ef16de40 100644 --- a/tests/tstdint.c +++ b/tests/tstdint.c @@ -38,6 +38,8 @@ http://www.gnu.org/licenses/ or write to the Free Software Foundation, Inc., #define MPFR_USE_INTMAX_T #include <mpfr.h> +#include "mpfr-test.h" + int main (void) { diff --git a/tests/tvalist.c b/tests/tvalist.c index 3d6e9418c..cb7039ff3 100644 --- a/tests/tvalist.c +++ b/tests/tvalist.c @@ -41,6 +41,8 @@ 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> +#include "mpfr-test.h" + static void test (FILE *fout, const char *fmt, ...) { |