mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
24 lines
329 B
D
24 lines
329 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);
|
|
}
|