mirror of
https://github.com/dlang/phobos.git
synced 2025-05-03 16:40:48 +03:00
21 lines
253 B
D
21 lines
253 B
D
/*
|
|
* Written by Walter Bright
|
|
* Digital Mars
|
|
* www.digitalmars.com
|
|
* Placed into Public Domain.
|
|
*/
|
|
|
|
module std.c.stddef;
|
|
|
|
version (Win32)
|
|
{
|
|
alias wchar wchar_t;
|
|
}
|
|
else version (linux)
|
|
{
|
|
alias dchar wchar_t;
|
|
}
|
|
else
|
|
{
|
|
static assert(0);
|
|
}
|