am 134911d7
: Merge "Use __typeof__() instead of typeof()"
* commit '134911d75deab2b5babc175c894c002e875dfed6': Use __typeof__() instead of typeof()
This commit is contained in:
commit
4a542fc519
1 changed files with 1 additions and 1 deletions
|
@ -207,7 +207,7 @@ extern int setdomainname(const char *, size_t);
|
|||
|
||||
/* Used to retry syscalls that can return EINTR. */
|
||||
#define TEMP_FAILURE_RETRY(exp) ({ \
|
||||
typeof (exp) _rc; \
|
||||
__typeof__(exp) _rc; \
|
||||
do { \
|
||||
_rc = (exp); \
|
||||
} while (_rc == -1 && errno == EINTR); \
|
||||
|
|
Loading…
Reference in a new issue