]> git.llucax.com Git - software/druntime.git/blob - import/stdc/posix/config.d
Applied all D2 changes to trunk. It should now be a fully functional D2 runtime.
[software/druntime.git] / import / stdc / posix / config.d
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 }