Skip to content
Snippets Groups Projects
Commit a90a6c3e authored by Andre Maroneze's avatar Andre Maroneze
Browse files

[libc] minor change to help coreutils parsing

parent a21a43f9
No related branches found
No related tags found
No related merge requests found
......@@ -43,6 +43,13 @@ typedef __UINT_LEAST16_T char16_t;
typedef __UINT_LEAST16_T char32_t;
#endif
/* POSIX 2024: "Inclusion of the <uchar.h> header may make visible all symbols
from the headers <stddef.h>, <stdint.h>, and <wchar.h>.
Note: coreutils needs this: it uses wint_t without including wchar.h. */
#include <stddef.h>
#include <stdint.h>
#include <wchar.h>
/* C23 7.30.1 "...If ps is a null pointer, each function uses its own
internal mbstate_t object..."
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment