/src/core/stdc/stddef.d
D | 30 lines | 12 code | 4 blank | 14 comment | 0 complexity | b134f7c8f14acbc7b82e803f7abc3c6f MD5 | raw file
1/** 2 * D header file for C99. 3 * 4 * Copyright: Copyright Sean Kelly 2005 - 2009. 5 * License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>. 6 * Authors: Sean Kelly 7 * Standards: ISO/IEC 9899:1999 (E) 8 */ 9 10/* Copyright Sean Kelly 2005 - 2009. 11 * Distributed under the Boost Software License, Version 1.0. 12 * (See accompanying file LICENSE or copy at 13 * http://www.boost.org/LICENSE_1_0.txt) 14 */ 15module core.stdc.stddef; 16 17extern (C): 18@trusted: // Types only. 19nothrow: 20 21// size_t and ptrdiff_t are defined in the object module. 22 23version( Windows ) 24{ 25 alias wchar wchar_t; 26} 27else 28{ 29 alias dchar wchar_t; 30}