mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-14 03:03:14 +08:00
Merge pull request #120 from pwpiwi/fix_compile_errors
fix issue #116: remove includes of stdio.h in armsrc
This commit is contained in:
commit
9f9b6b7469
3 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,3 @@
|
|||
#include "stdio.h"
|
||||
#include "aes.h"
|
||||
|
||||
static const unsigned int Te0[256] = {
|
||||
|
@ -1138,6 +1137,9 @@ int AesDecrypt(AesCtx *pCtx, unsigned char *pCipher, unsigned char *pData, unsig
|
|||
//////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef EMBEDDED
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
AesCtx ctx;
|
||||
|
|
|
@ -61,7 +61,6 @@
|
|||
**/
|
||||
|
||||
#include "optimized_cipher.h"
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdbool.h>
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
#include <stdio.h>
|
||||
#include <strings.h>
|
||||
#include <string.h>
|
||||
#include <stdint.h>
|
||||
|
|
Loading…
Reference in a new issue