Remove obsolete hacks for uin32_t

We now require support for stdint.h from the compiler.
This commit is contained in:
Manuel Pégourié-Gonnard 2015-07-01 17:13:05 +02:00
parent 3083053dd2
commit 636741b176
3 changed files with 0 additions and 15 deletions

View File

@ -30,12 +30,7 @@
#include "mbedtls/base64.h"
#if defined(_MSC_VER) && !defined(EFIX64) && !defined(EFI32)
#include <basetsd.h>
typedef UINT32 uint32_t;
#else
#include <stdint.h>
#endif
#if defined(MBEDTLS_SELF_TEST)
#include <string.h>

View File

@ -87,12 +87,7 @@ static int wsa_init_done = 0;
#include <time.h>
#if defined(_MSC_VER) && !defined(EFIX64) && !defined(EFI32)
#include <basetsd.h>
typedef UINT32 uint32_t;
#else
#include <stdint.h>
#endif
/*
* Prepare for using the sockets interface

View File

@ -42,12 +42,7 @@
#define mbedtls_free free
#endif
#if defined(_MSC_VER) && !defined(EFIX64) && !defined(EFI32)
#include <basetsd.h>
typedef UINT32 uint32_t;
#else
#include <stdint.h>
#endif
#if defined(MBEDTLS_HAVE_TIME)
#include <time.h>