mirror of
https://github.com/yuzu-emu/mbedtls
synced 2024-11-24 19:48:20 +00:00
- Made better fix to issue of defined long long type for bignum code
This commit is contained in:
parent
17caec12af
commit
6621987e1c
2 changed files with 2 additions and 1 deletions
|
@ -104,6 +104,7 @@ typedef unsigned long t_udbl;
|
||||||
(defined(__sparc__) && defined(__arch64__)) || \
|
(defined(__sparc__) && defined(__arch64__)) || \
|
||||||
defined(__s390x__) )
|
defined(__s390x__) )
|
||||||
typedef unsigned int t_udbl __attribute__((mode(TI)));
|
typedef unsigned int t_udbl __attribute__((mode(TI)));
|
||||||
|
#define POLARSSL_HAVE_LONGLONG
|
||||||
#else
|
#else
|
||||||
#if defined(POLARSSL_HAVE_LONGLONG)
|
#if defined(POLARSSL_HAVE_LONGLONG)
|
||||||
typedef unsigned long long t_udbl;
|
typedef unsigned long long t_udbl;
|
||||||
|
|
|
@ -41,7 +41,7 @@
|
||||||
#ifndef POLARSSL_BN_MUL_H
|
#ifndef POLARSSL_BN_MUL_H
|
||||||
#define POLARSSL_BN_MUL_H
|
#define POLARSSL_BN_MUL_H
|
||||||
|
|
||||||
#include "config.h"
|
#include "bignum.h"
|
||||||
|
|
||||||
#if defined(POLARSSL_HAVE_ASM)
|
#if defined(POLARSSL_HAVE_ASM)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue