https://issues.dlang.org/show_bug.cgi?id=24661
Issue ID: 24661
Summary: wctype_t and wctrans_t are platform-dependent
Product: D
Version: D2
Hardware: x86_64
OS: Linux
Status: NEW
Severity: normal
Priority: P1
Component: druntime
Assignee: [email protected]
Reporter: [email protected]
The types wctype_t and wctrans_t are currently aliased to wchar_t, but that is
wrong for some platforms, like Linux.
The problem was found by comparing type sizes in druntime with type sizes found
with ImportC: https://github.com/dlang/dmd/pull/16571
--