mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-04-08 21:09:03 +02:00
28 lines
569 B
D
28 lines
569 B
D
/**
|
|
* D header file for POSIX.
|
|
*
|
|
* Copyright: Public Domain
|
|
* License: Public Domain
|
|
* Authors: Sean Kelly
|
|
* Standards: The Open Group Base Specifications Issue 6, IEEE Std 1003.1, 2004 Edition
|
|
*/
|
|
module stdc.posix.config;
|
|
|
|
public import stdc.config;
|
|
|
|
extern (C):
|
|
|
|
version( linux )
|
|
{
|
|
version( none /* X86_64 */ )
|
|
{
|
|
const bool __USE_LARGEFILE64 = true;
|
|
}
|
|
else
|
|
{
|
|
const bool __USE_LARGEFILE64 = false;
|
|
}
|
|
const bool __USE_FILE_OFFSET64 = __USE_LARGEFILE64;
|
|
const bool __REDIRECT = false;
|
|
}
|