* commit '923619f6e22cc76db598c7e0331ce3d1a470943d': Use __typeof__() instead of typeof()
This commit is contained in:
@@ -207,7 +207,7 @@ extern int setdomainname(const char *, size_t);
|
|||||||
|
|
||||||
/* Used to retry syscalls that can return EINTR. */
|
/* Used to retry syscalls that can return EINTR. */
|
||||||
#define TEMP_FAILURE_RETRY(exp) ({ \
|
#define TEMP_FAILURE_RETRY(exp) ({ \
|
||||||
typeof (exp) _rc; \
|
__typeof__(exp) _rc; \
|
||||||
do { \
|
do { \
|
||||||
_rc = (exp); \
|
_rc = (exp); \
|
||||||
} while (_rc == -1 && errno == EINTR); \
|
} while (_rc == -1 && errno == EINTR); \
|
||||||
|
Reference in New Issue
Block a user