am 134911d7: Merge "Use __typeof__() instead of typeof()"

* commit '134911d75deab2b5babc175c894c002e875dfed6':
  Use __typeof__() instead of typeof()
This commit is contained in:
Dan Albert 2014-05-27 21:59:33 +00:00 committed by Android Git Automerger
commit 4a542fc519

View file

@ -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); \