diff options
author | rsc <devnull@localhost> | 2005-12-31 03:10:42 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2005-12-31 03:10:42 +0000 |
commit | 9fe7e1a14c84bddc7bb0ec16ce23f44b5479ce94 (patch) | |
tree | 2e61c357175f71285742c3296ad2ec17782ddaa1 /src/libmp | |
parent | c704a4a23e12eb1d02cc1ec6803d7ba8731e0368 (diff) | |
download | plan9port-9fe7e1a14c84bddc7bb0ec16ce23f44b5479ce94.tar.gz plan9port-9fe7e1a14c84bddc7bb0ec16ce23f44b5479ce94.tar.bz2 plan9port-9fe7e1a14c84bddc7bb0ec16ce23f44b5479ce94.zip |
oops - mpdigit not mpint
Diffstat (limited to 'src/libmp')
-rw-r--r-- | src/libmp/port/mpvecdigmuladd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libmp/port/mpvecdigmuladd.c b/src/libmp/port/mpvecdigmuladd.c index 7f2c537a..28d4205a 100644 --- a/src/libmp/port/mpvecdigmuladd.c +++ b/src/libmp/port/mpvecdigmuladd.c @@ -2,7 +2,7 @@ #include <mp.h> #include "dat.h" -#define LO(x) ((x) & (((mpint)1<<(Dbits/2))-1)) +#define LO(x) ((x) & (((mpdigit)1<<(Dbits/2))-1)) #define HI(x) ((x) >> (Dbits/2)) static void |