diff options
author | Elliott Hughes <enh@google.com> | 2019-12-23 03:26:37 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2019-12-23 03:26:37 +0000 |
commit | 5e2ac29165a5ecdff9be1e8b3aa0c0f968abf539 (patch) | |
tree | cd633b203cc758ce1d4fcf95330d47166ed8250c /libc/include/stdio.h | |
parent | 8cdacf9760ed7d4a5b3218f0342344261ab6f8aa (diff) | |
parent | 95c6cd753f028b1afc0c6a800a3dd6bd85a5a6a0 (diff) |
Merge "Stop using the __ANDROID_API_x__ constants."
Diffstat (limited to 'libc/include/stdio.h')
-rw-r--r-- | libc/include/stdio.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/include/stdio.h b/libc/include/stdio.h index 6632c0170..1bf578c1d 100644 --- a/libc/include/stdio.h +++ b/libc/include/stdio.h @@ -46,7 +46,7 @@ #include <bits/seek_constants.h> -#if __ANDROID_API__ < __ANDROID_API_N__ +#if __ANDROID_API__ < 24 #include <bits/struct_file.h> #endif @@ -58,7 +58,7 @@ typedef off64_t fpos64_t; struct __sFILE; typedef struct __sFILE FILE; -#if __ANDROID_API__ >= __ANDROID_API_M__ +#if __ANDROID_API__ >= 23 extern FILE* stdin __INTRODUCED_IN(23); extern FILE* stdout __INTRODUCED_IN(23); extern FILE* stderr __INTRODUCED_IN(23); |