mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-27 11:52:03 +00:00
oops - mpdigit not mpint
This commit is contained in:
parent
c704a4a23e
commit
9fe7e1a14c
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue