Merge remote-tracking branch 'public/pr/1563' into development

This commit is contained in:
Simon Butcher 2018-07-10 12:49:26 +01:00
commit cdbb2f2168
2 changed files with 2 additions and 9 deletions

View file

@ -70,15 +70,6 @@
#include <time.h>
#endif
#if defined(MBEDTLS_FS_IO)
#include <stdio.h>
#if !defined(_WIN32)
#include <sys/types.h>
#include <sys/stat.h>
#include <dirent.h>
#endif
#endif
#define CHECK(code) if( ( ret = code ) != 0 ){ return( ret ); }
#define CHECK_RANGE(min, max, val) if( val < min || val > max ){ return( ret ); }