1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-28 00:21:48 +03:00

- Rewrote bignum type definition #ifdef tree to work better on all

systems
This commit is contained in:
Paul Bakker
2012-10-02 12:19:31 +00:00
parent 3338b792da
commit 62261d6bd6
3 changed files with 34 additions and 20 deletions

View File

@ -1102,7 +1102,7 @@ int mpi_div_mpi( mpi *Q, mpi *R, const mpi *A, const mpi *B )
Z.p[i - t - 1] = ~0;
else
{
#if defined(POLARSSL_HAVE_INT64)
#if defined(POLARSSL_HAVE_UDBL)
t_udbl r;
r = (t_udbl) X.p[i] << biL;