comparison lphobos/std/c/stddef.d @ 1:c53b6e3fe49a trunk

[svn r5] Initial commit. Most things are very rough.
author lindquist
date Sat, 01 Sep 2007 21:43:27 +0200
parents
children
comparison
equal deleted inserted replaced
0:a9e71648e74d 1:c53b6e3fe49a
1
2 /**
3 * C's <stddef.h>
4 * Authors: Walter Bright, Digital Mars, www.digitalmars.com
5 * License: Public Domain
6 * Macros:
7 * WIKI=Phobos/StdCStddef
8 */
9
10 module std.c.stddef;
11
12 version (Win32)
13 {
14 alias wchar wchar_t;
15 }
16 else version (linux)
17 {
18 alias dchar wchar_t;
19 }
20 else
21 {
22 static assert(0);
23 }