plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

commit e290e875f350dbbc2288ec988d939a57cc8f9bf2
parent 5369e5ea0cfa4207fa3fce08165a7bd82118a416
Author: rsc <devnull@localhost>
Date:   Mon, 15 Jan 2007 00:32:17 +0000

change mpdigit to uint -- 64-bit mp library not so working

Diffstat:
Minclude/mp.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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 */