mirror of
https://github.com/yuzu-emu/mbedtls
synced 2024-11-24 20:18:12 +00:00
- Fixed position of padlock error definition
This commit is contained in:
parent
cb79ae0b9b
commit
70338f50fa
1 changed files with 2 additions and 2 deletions
|
@ -29,6 +29,8 @@
|
||||||
|
|
||||||
#include "polarssl/aes.h"
|
#include "polarssl/aes.h"
|
||||||
|
|
||||||
|
#define POLARSSL_ERR_PADLOCK_DATA_MISALIGNED -0x0030 /**< Input data should be aligned. */
|
||||||
|
|
||||||
#if defined(POLARSSL_HAVE_ASM) && defined(__GNUC__) && defined(__i386__)
|
#if defined(POLARSSL_HAVE_ASM) && defined(__GNUC__) && defined(__i386__)
|
||||||
|
|
||||||
#ifndef POLARSSL_HAVE_X86
|
#ifndef POLARSSL_HAVE_X86
|
||||||
|
@ -42,8 +44,6 @@
|
||||||
|
|
||||||
#define PADLOCK_ALIGN16(x) (unsigned long *) (16 + ((long) x & ~15))
|
#define PADLOCK_ALIGN16(x) (unsigned long *) (16 + ((long) x & ~15))
|
||||||
|
|
||||||
#define POLARSSL_ERR_PADLOCK_DATA_MISALIGNED -0x0030 /**< Input data should be aligned. */
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue