On Wednesday 09 March 2011 08:00:12 Chris wrote:
> I’m wondering what the bit size of a mp_bitcnt_t on a 64-bit system?  I’m
> working on an Eiffel interface to MPIR and am not sure which Eiffel type to
> use as a stand in for a mp_bitcnt_t.
> 
> Regards
> Chris Saunders

Looking at mpir.h 

#ifdef _WIN64
typedef unsigned long long int  mp_bitcnt_t;
#else
typedef unsigned long int mp_bitcnt_t;
#endif

so it's 64bits

Jason

-- 
You received this message because you are subscribed to the Google Groups 
"mpir-devel" group.
To post to this group, send email to mpir-devel@googlegroups.com.
To unsubscribe from this group, send email to 
mpir-devel+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/mpir-devel?hl=en.

Reply via email to