comparison druntime/import/stdc/posix/config.d @ 760:6f33b427bfd1

Seems like hg ignores .di files, so I missed a bunch of stuff. complete druntime should be there now :)
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Wed, 12 Nov 2008 00:19:18 +0100
parents
children
comparison
equal deleted inserted replaced
759:d3eb054172f9 760:6f33b427bfd1
1 /**
2 * D header file for POSIX.
3 *
4 * Copyright: Public Domain
5 * License: Public Domain
6 * Authors: Sean Kelly
7 * Standards: The Open Group Base Specifications Issue 6, IEEE Std 1003.1, 2004 Edition
8 */
9 module stdc.posix.config;
10
11 public import stdc.config;
12
13 extern (C):
14
15 version( linux )
16 {
17 version( none /* X86_64 */ )
18 {
19 const bool __USE_LARGEFILE64 = true;
20 }
21 else
22 {
23 const bool __USE_LARGEFILE64 = false;
24 }
25 const bool __USE_FILE_OFFSET64 = __USE_LARGEFILE64;
26 const bool __REDIRECT = false;
27 }