change mpdigit to uint -- 64-bit mp library not so working
diff --git a/include/mp.h b/include/mp.h
index b8ad0d1..d64bf0c 100644
--- a/include/mp.h
+++ b/include/mp.h
@@ -13,7 +13,7 @@
 
 #define _MPINT 1
 
-typedef ulong mpdigit;
+typedef uint mpdigit;
 
 /* the code assumes mpdigit to be at least an int */
 /* mpdigit must be an atomic type.  mpdigit is defined */