diff options
author | rsc <devnull@localhost> | 2004-03-26 01:59:35 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2004-03-26 01:59:35 +0000 |
commit | be22ae2d0729f68672e3202c91cfe13c9e74cccc (patch) | |
tree | b7bc9f9c1e8d3b221adc82f055f8be19ef25d0e6 /src/libmp | |
parent | 4e3a2cc1f96f4479f951958f9ca1860f57a0771b (diff) | |
download | plan9port-be22ae2d0729f68672e3202c91cfe13c9e74cccc.tar.gz plan9port-be22ae2d0729f68672e3202c91cfe13c9e74cccc.tar.bz2 plan9port-be22ae2d0729f68672e3202c91cfe13c9e74cccc.zip |
SunOS can rot in hell.
Diffstat (limited to 'src/libmp')
-rw-r--r-- | src/libmp/port/dat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libmp/port/dat.h b/src/libmp/port/dat.h index 7c834ac8..50fbf671 100644 --- a/src/libmp/port/dat.h +++ b/src/libmp/port/dat.h @@ -1,4 +1,4 @@ -#define mpdighi (mpdigit)(1<<(Dbits-1)) +#define mpdighi (mpdigit)((ulong)1<<(Dbits-1)) #define DIGITS(x) ((Dbits - 1 + (x))/Dbits) // for converting between int's and mpint's |