diff options
author | Elliott Hughes <enh@google.com> | 2019-04-24 20:33:08 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2019-04-24 20:33:08 +0000 |
commit | 8c3140a6123137700a22ec1ab1d4a38318b5571c (patch) | |
tree | ad3c6d0131a9eed00e7f511f1eccef4329cdd032 /libc/include/android/api-level.h | |
parent | 06a5617f247b4396cb78993ebc616e6f9bac2bec (diff) | |
parent | 420671135237cdf40c98d2336fb8712b7f0a2861 (diff) |
Merge "threads.h: Add C11 thread support."
Diffstat (limited to 'libc/include/android/api-level.h')
-rw-r--r-- | libc/include/android/api-level.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libc/include/android/api-level.h b/libc/include/android/api-level.h index a17585768..af7cde1e3 100644 --- a/libc/include/android/api-level.h +++ b/libc/include/android/api-level.h @@ -100,6 +100,9 @@ __BEGIN_DECLS /** Names the "Q" API level (29), for comparisons against __ANDROID_API__. */ #define __ANDROID_API_Q__ 29 +/** Names the "R" API level (30), for comparisons against __ANDROID_API__. */ +#define __ANDROID_API_R__ 30 + /** * Returns the `targetSdkVersion` of the caller, or `__ANDROID_API_FUTURE__` * if there is no known target SDK version (for code not running in the |