mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-30 22:43:08 +03:00
Fix typo in platform_util.c
Fix a typo in a conditional include. Signed-off-by: Michael Grand (TrustnGo) <m.grand@trustngo.tech>
This commit is contained in:
committed by
Elena Uziunaite
parent
71ff969ca2
commit
83da5abdd6
@ -149,7 +149,7 @@ void mbedtls_zeroize_and_free(void *buf, size_t len)
|
|||||||
#include <time.h>
|
#include <time.h>
|
||||||
#if !defined(_WIN32) && (defined(unix) || \
|
#if !defined(_WIN32) && (defined(unix) || \
|
||||||
defined(__unix) || defined(__unix__) || (defined(__APPLE__) && \
|
defined(__unix) || defined(__unix__) || (defined(__APPLE__) && \
|
||||||
defined(__MACH__)) || defined__midipix__)
|
defined(__MACH__)) || defined(__midipix__))
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#endif /* !_WIN32 && (unix || __unix || __unix__ ||
|
#endif /* !_WIN32 && (unix || __unix || __unix__ ||
|
||||||
* (__APPLE__ && __MACH__) || __midipix__) */
|
* (__APPLE__ && __MACH__) || __midipix__) */
|
||||||
|
Reference in New Issue
Block a user