diff options
author | rsc <devnull@localhost> | 2007-01-15 00:32:17 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2007-01-15 00:32:17 +0000 |
commit | e290e875f350dbbc2288ec988d939a57cc8f9bf2 (patch) | |
tree | 0b178010a68f87dc65b0d05c95a915e4eaed58a4 /include | |
parent | 5369e5ea0cfa4207fa3fce08165a7bd82118a416 (diff) | |
download | plan9port-e290e875f350dbbc2288ec988d939a57cc8f9bf2.tar.gz plan9port-e290e875f350dbbc2288ec988d939a57cc8f9bf2.tar.bz2 plan9port-e290e875f350dbbc2288ec988d939a57cc8f9bf2.zip |
change mpdigit to uint -- 64-bit mp library not so working
Diffstat (limited to 'include')
-rw-r--r-- | include/mp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mp.h b/include/mp.h index b8ad0d16..d64bf0cb 100644 --- a/include/mp.h +++ b/include/mp.h @@ -13,7 +13,7 @@ AUTOLIB(mp) #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 */ |