aboutsummaryrefslogtreecommitdiff
path: root/include/mp.h
diff options
context:
space:
mode:
authorrsc <devnull@localhost>2007-01-15 00:32:17 +0000
committerrsc <devnull@localhost>2007-01-15 00:32:17 +0000
commite290e875f350dbbc2288ec988d939a57cc8f9bf2 (patch)
tree0b178010a68f87dc65b0d05c95a915e4eaed58a4 /include/mp.h
parent5369e5ea0cfa4207fa3fce08165a7bd82118a416 (diff)
downloadplan9port-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/mp.h')
-rw-r--r--include/mp.h2
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 */