Merge pull request #120 from pwpiwi/fix_compile_errors

fix issue #116: remove includes of stdio.h in armsrc
This commit is contained in:
pwpiwi 2015-06-18 11:38:58 +02:00
commit 9f9b6b7469
3 changed files with 3 additions and 3 deletions

View file

@ -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;

View file

@ -61,7 +61,6 @@
**/
#include "optimized_cipher.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>

View file

@ -1,4 +1,3 @@
#include <stdio.h>
#include <strings.h>
#include <string.h>
#include <stdint.h>