mirror of
				https://github.com/Mbed-TLS/mbedtls.git
				synced 2025-11-03 20:33:16 +03:00 
			
		
		
		
	x509.c: Remove unused includes
Remove unused includes guarded by MBEDTLS_FS_IO, which doesn't appear anywhere else in the file.
This commit is contained in:
		@@ -70,15 +70,6 @@
 | 
				
			|||||||
#include <time.h>
 | 
					#include <time.h>
 | 
				
			||||||
#endif
 | 
					#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(code) if( ( ret = code ) != 0 ){ return( ret ); }
 | 
				
			||||||
#define CHECK_RANGE(min, max, val) if( val < min || val > max ){ return( ret ); }
 | 
					#define CHECK_RANGE(min, max, val) if( val < min || val > max ){ return( ret ); }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user