mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-29 11:41:15 +03:00
Fix compilation with MinGW32
Signed-off-by: Cameron Cawley <ccawley2011@gmail.com>
This commit is contained in:
committed by
Dave Rodgman
parent
a745c7d439
commit
ea5496ceb3
@ -44,9 +44,12 @@ typedef UINT32 uint32_t;
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#if defined(__unix__) || (defined(__APPLE__) && defined(__MACH__)) || defined(__MINGW32__)
|
||||
#include <strings.h>
|
||||
#endif
|
||||
|
||||
#if defined(__unix__) || (defined(__APPLE__) && defined(__MACH__))
|
||||
#include <unistd.h>
|
||||
#include <strings.h>
|
||||
#endif
|
||||
|
||||
/* Type for Hex parameters */
|
||||
|
Reference in New Issue
Block a user