/src/core/stdc/stddef.d
http://github.com/AlexeyProkhin/druntime · D · 30 lines · 12 code · 4 blank · 14 comment · 0 complexity · b134f7c8f14acbc7b82e803f7abc3c6f MD5 · raw file
- /**
- * 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 or copy at
- * http://www.boost.org/LICENSE_1_0.txt)
- */
- module core.stdc.stddef;
- extern (C):
- @trusted: // Types only.
- nothrow:
- // size_t and ptrdiff_t are defined in the object module.
- version( Windows )
- {
- alias wchar wchar_t;
- }
- else
- {
- alias dchar wchar_t;
- }