Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • abi/include/_bits/uchar.h

    r28a5ebd r696b405  
    3838#include <stdint.h>
    3939
     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
    4045typedef uint8_t char8_t;
    41 typedef uint32_t char32_t;
     46#endif
     47
     48typedef uint_least16_t char16_t;
     49typedef uint_least32_t char32_t;
    4250
    4351#endif
Note: See TracChangeset for help on using the changeset viewer.