commit | 134911d75deab2b5babc175c894c002e875dfed6 | [log] [tgz] |
---|---|---|
author | Dan Albert <danalbert@google.com> | Tue May 27 21:57:24 2014 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Tue May 27 21:57:24 2014 +0000 |
tree | 6e8942ec57b238f5d414b37fb34dbe298a82f19b | |
parent | 8e85b4f00e8816f22bf5b5f20b1f978432f2ae08 [diff] | |
parent | a7821b7121933b361554b28a2f9455783a330591 [diff] |
Merge "Use __typeof__() instead of typeof()"
diff --git a/libc/include/unistd.h b/libc/include/unistd.h index 6cb36d8..08a82e6 100644 --- a/libc/include/unistd.h +++ b/libc/include/unistd.h
@@ -207,7 +207,7 @@ /* 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); \