Refresh 64-bit headers/libs (WW21)

Change-Id: I013af3ae4adac17d7b2ef5680d41d75dc9799d19
This commit is contained in:
Andrew Hsieh
2014-05-26 12:27:33 +08:00
parent f570883afa
commit 19f647e8a7
78 changed files with 1198 additions and 864 deletions

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