diff --git a/library/x509.c b/library/x509.c index 3cfa1d1e9..aaf7f7e88 100644 --- a/library/x509.c +++ b/library/x509.c @@ -65,15 +65,6 @@ #include #endif -#if defined(MBEDTLS_FS_IO) -#include -#if !defined(_WIN32) -#include -#include -#include -#endif -#endif - #define CHECK(code) if( ( ret = code ) != 0 ){ return( ret ); } #define CHECK_RANGE(min, max, val) if( val < min || val > max ){ return( ret ); }