We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f04fdcd commit 90184f1Copy full SHA for 90184f1
utils/fake_libc_include/_fake_typedefs.h
@@ -153,6 +153,12 @@ typedef int uintmax_t;
153
/* C99 stdbool.h bool type. _Bool is built-in in C99 */
154
typedef _Bool bool;
155
156
+/* GNU Extension for 64-bit targets */
157
+#ifdef __SIZEOF_INT128__
158
+typedef int __int128_t;
159
+typedef int __uint128_t;
160
+#endif /* __SIZEOF_INT128__ */
161
+
162
/* Mir typedefs */
163
typedef void* MirEGLNativeWindowType;
164
typedef void* MirEGLNativeDisplayType;
0 commit comments