From 7bfe64da6edd990611cf3ff4f9d5b82d292b0da9 Mon Sep 17 00:00:00 2001 From: "nelsonb%netscape.com" Date: Wed, 9 Aug 2000 20:46:59 +0000 Subject: [PATCH] Comment out call to unimplemented function, so this will compile. git-svn-id: svn://10.0.0.236/trunk@75900 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/security/nss/lib/freebl/mpi/tests/mptest-5.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mozilla/security/nss/lib/freebl/mpi/tests/mptest-5.c b/mozilla/security/nss/lib/freebl/mpi/tests/mptest-5.c index 26f95b36298..7a52ad933b8 100644 --- a/mozilla/security/nss/lib/freebl/mpi/tests/mptest-5.c +++ b/mozilla/security/nss/lib/freebl/mpi/tests/mptest-5.c @@ -34,7 +34,7 @@ * the GPL. If you do not delete the provisions above, a recipient * may use your version of this file under either the MPL or the GPL. * - * $Id: mptest-5.c,v 1.1 2000-07-14 00:44:44 nelsonb%netscape.com Exp $ + * $Id: mptest-5.c,v 1.2 2000-08-09 20:46:59 nelsonb%netscape.com Exp $ */ #include @@ -70,9 +70,10 @@ int main(int argc, char *argv[]) mp_gcd(&a, &b, &c); printf("Euclid: c = "); mp_print(&c, stdout); fputc('\n', stdout); +/* mp_bgcd(&a, &b, &c); printf("Binary: c = "); mp_print(&c, stdout); fputc('\n', stdout); - +*/ mp_init(&x); mp_init(&y); printf("\nc = (a, b) = ax + by\n");