1 --- a/libc/include/android/ndk-version.h 2021-04-01 16:08:03.109183965 +0300
2 +++ b/libc/include/android/ndk-version.h 2021-04-01 16:07:19.811424641 +0300
7 + * Set to 1 if this is an NDK, unset otherwise. See
8 + * https://android.googlesource.com/platform/bionic/+/master/docs/defines.md.
10 +#define __ANDROID_NDK__ 1
13 + * Major version of this NDK.
15 + * For example: 16 for r16.
17 +#define __NDK_MAJOR__ 22
20 + * Minor version of this NDK.
22 + * For example: 0 for r16 and 1 for r16b.
24 +#define __NDK_MINOR__ 0
27 + * Set to 0 if this is a release build, or 1 for beta 1,
28 + * 2 for beta 2, and so on.
30 +#define __NDK_BETA__ 0
33 + * Build number for this NDK.
35 + * For a local development build of the NDK, this is -1.
37 +#define __NDK_BUILD__ 7026061
40 + * Set to 1 if this is a canary build, 0 if not.
42 +#define __NDK_CANARY__ 0