mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-03-08 10:09:54 +00:00
Add brackets around function macro arguments
This commit is contained in:
parent
a4d1857003
commit
86f76ea25c
|
@ -57,8 +57,10 @@
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#else
|
#else
|
||||||
#include <io.h>
|
#include <io.h>
|
||||||
#define read(fd, buf, len) _read( fd, (void *)buf, (unsigned int)len )
|
#define read(fd, buf, len) \
|
||||||
#define write(fd, buf, len) _write( fd, (const void *)buf, (unsigned int)len )
|
_read( fd, (void *)( buf ), (unsigned int)( len ) )
|
||||||
|
#define write(fd, buf, len) \
|
||||||
|
_write( fd, (const void *)( buf ), (unsigned int)( len ) )
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(_WIN32) || defined(_WIN32_WCE)
|
#if defined(_WIN32) || defined(_WIN32_WCE)
|
||||||
|
|
Loading…
Reference in a new issue