mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-26 19:55:36 +01:00
Add brackets around function macro arguments
This commit is contained in:
parent
a4d1857003
commit
86f76ea25c
@ -57,8 +57,10 @@
|
||||
#include <unistd.h>
|
||||
#else
|
||||
#include <io.h>
|
||||
#define read(fd, buf, len) _read( fd, (void *)buf, (unsigned int)len )
|
||||
#define write(fd, buf, len) _write( fd, (const void *)buf, (unsigned int)len )
|
||||
#define read(fd, buf, len) \
|
||||
_read( fd, (void *)( buf ), (unsigned int)( len ) )
|
||||
#define write(fd, buf, len) \
|
||||
_write( fd, (const void *)( buf ), (unsigned int)( len ) )
|
||||
#endif
|
||||
|
||||
#if defined(_WIN32) || defined(_WIN32_WCE)
|
||||
|
Loading…
Reference in New Issue
Block a user