Added my copyright and a small change to a print statement (not the only

change I have made to the code - there were others previously, but I had 
forgotten to put my (C) on it).
This commit is contained in:
wbhart 2009-12-08 15:47:04 +00:00
parent 7e6bd6d865
commit ac377dc877

View File

@ -2,6 +2,7 @@
Copyright 2002, 2003, 2004 Free Software Foundation, Inc.
Copyright 2009 Paul Zimmermann
Copyright 2009 William Hart
This file is part of the GNU MP Library.
@ -94,7 +95,7 @@ void check_rand(void)
{
fprintf (stderr, "t-invert failed at n = %lu, i=%lu\n", n, i);
gmp_printf ("A:= %Nx\n", dp, n);
gmp_printf ("X:=B^%lu %Nx\n", n, qp, n);
gmp_printf ("X:=B^%lu*%Nx\n", n, qp, n);
abort();
}
}