Remove obsolete hacks for uin32_t

We now require support for stdint.h from the compiler.
diff --git a/library/base64.c b/library/base64.c
index ec19e1b..4fa434d 100644
--- a/library/base64.c
+++ b/library/base64.c
@@ -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>
diff --git a/library/net.c b/library/net.c
index 2012aa6..3c69646 100644
--- a/library/net.c
+++ b/library/net.c
@@ -87,12 +87,7 @@
 
 #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
diff --git a/library/ssl_cli.c b/library/ssl_cli.c
index 0db7c18..af28d00 100644
--- a/library/ssl_cli.c
+++ b/library/ssl_cli.c
@@ -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>