mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-17 13:23:14 +01:00
29 lines
707 B
D
29 lines
707 B
D
/**
|
|
* D header file for C99.
|
|
*
|
|
* Copyright: Copyright Sean Kelly 2005 - 2009.
|
|
* License: <a href="http://www.boost.org/LICENSE_1_0.txt>Boost License 1.0</a>.
|
|
* Authors: Sean Kelly
|
|
* Standards: ISO/IEC 9899:1999 (E)
|
|
*
|
|
* Copyright Sean Kelly 2005 - 2009.
|
|
* Distributed under the Boost Software License, Version 1.0.
|
|
* (See accompanying file LICENSE_1_0.txt or copy at
|
|
* http://www.boost.org/LICENSE_1_0.txt)
|
|
*/
|
|
module core.stdc.stddef;
|
|
|
|
extern (C):
|
|
|
|
//alias typeof(int.sizeof) size_t;
|
|
//alias typeof(cast(void*)0 - cast(void*)0) ptrdiff_t;
|
|
|
|
version( Windows )
|
|
{
|
|
alias wchar wchar_t;
|
|
}
|
|
else
|
|
{
|
|
alias dchar wchar_t;
|
|
}
|