[libc-commits] [libc] [libc] Implemented wcrtomb internal function and public libc function (PR #144596)
Michael Jones via libc-commits
libc-commits at lists.llvm.org
Wed Jun 18 09:56:19 PDT 2025
================
@@ -10,6 +10,7 @@
#include "hdr/types/char8_t.h"
#include "src/__support/common.h"
#include "src/__support/error_or.h"
+#include "src/__support/libc_errno.h" // for error numbers
----------------
michaelrj-google wrote:
`libc_errno` provides the actual errno variable, if you just want the error numbers use `hdr/errno_macros.h`
```suggestion
#include "hdr/errno_macros" // for error numbers
```
https://github.com/llvm/llvm-project/pull/144596
More information about the libc-commits
mailing list