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
3@@ -0,0 +1,39 @@
4+#pragma once
5+
6+/**
7+ * Set to 1 if this is an NDK, unset otherwise. See
8+ * https://android.googlesource.com/platform/bionic/+/master/docs/defines.md.
9+ */
10+#define __ANDROID_NDK__ 1
11+
12+/**
13+ * Major version of this NDK.
14+ *
15+ * For example: 16 for r16.
16+ */
17+#define __NDK_MAJOR__ 22
18+
19+/**
20+ * Minor version of this NDK.
21+ *
22+ * For example: 0 for r16 and 1 for r16b.
23+ */
24+#define __NDK_MINOR__ 0
25+
26+/**
27+ * Set to 0 if this is a release build, or 1 for beta 1,
28+ * 2 for beta 2, and so on.
29+ */
30+#define __NDK_BETA__ 0
31+
32+/**
33+ * Build number for this NDK.
34+ *
35+ * For a local development build of the NDK, this is -1.
36+ */
37+#define __NDK_BUILD__ 7026061
38+
39+/**
40+ * Set to 1 if this is a canary build, 0 if not.
41+ */
42+#define __NDK_CANARY__ 0