mirror of
https://github.com/dlang/phobos.git
synced 2025-05-06 02:45:12 +03:00
23 lines
306 B
D
23 lines
306 B
D
|
|
/**
|
|
* C's <stddef.h>
|
|
* Authors: Walter Bright, Digital Mars, www.digitalmars.com
|
|
* License: Public Domain
|
|
* Macros:
|
|
* WIKI=Phobos/StdCStddef
|
|
*/
|
|
|
|
module std.c.stddef;
|
|
|
|
version (Win32)
|
|
{
|
|
alias wchar wchar_t;
|
|
}
|
|
else version (linux)
|
|
{
|
|
alias dchar wchar_t;
|
|
}
|
|
else
|
|
{
|
|
static assert(0);
|
|
}
|