Changes in abi/include/_bits/uchar.h [28a5ebd:696b405] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
abi/include/_bits/uchar.h
r28a5ebd r696b405 38 38 #include <stdint.h> 39 39 40 /* 41 * char8_t became part of C++ with C++20. 42 * It is part of C23 hence we define it for C compilations only. 43 */ 44 #ifndef __cplusplus 40 45 typedef uint8_t char8_t; 41 typedef uint32_t char32_t; 46 #endif 47 48 typedef uint_least16_t char16_t; 49 typedef uint_least32_t char32_t; 42 50 43 51 #endif
Note:
See TracChangeset
for help on using the changeset viewer.