Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions utils/fake_libc_include/_fake_typedefs.h
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,12 @@ typedef int uintmax_t;
/* C99 stdbool.h bool type. _Bool is built-in in C99 */
typedef _Bool bool;

/* GNU Extension for 64-bit targets */
#ifdef __SIZEOF_INT128__
typedef int __int128_t;
typedef int __uint128_t;
#endif /* __SIZEOF_INT128__ */

/* Mir typedefs */
typedef void* MirEGLNativeWindowType;
typedef void* MirEGLNativeDisplayType;
Expand Down
Loading