comparison druntime/import/core/sys/osx/mach/port.d @ 1458:e0b2d67cfe7c

Added druntime (this should be removed once it works).
author Robert Clipsham <robert@octarineparrot.com>
date Tue, 02 Jun 2009 17:43:06 +0100
parents
children
comparison
equal deleted inserted replaced
1456:7b218ec1044f 1458:e0b2d67cfe7c
1 /**
2 * D header file for OSX.
3 *
4 * Copyright: Copyright Sean Kelly 2008 - 2009.
5 * License: <a href="http://www.boost.org/LICENSE_1_0.txt>Boost License 1.0</a>.
6 * Authors: Sean Kelly
7 *
8 * Copyright Sean Kelly 2008 - 2009.
9 * Distributed under the Boost Software License, Version 1.0.
10 * (See accompanying file LICENSE_1_0.txt or copy at
11 * http://www.boost.org/LICENSE_1_0.txt)
12 */
13 module core.sys.osx.mach.port;
14
15 extern (C):
16
17 version( X86 )
18 version = i386;
19 version( X86_64 )
20 version = i386;
21 version( i386 )
22 {
23 alias uint natural_t;
24 alias natural_t mach_port_t;
25 }