diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/druntime/import/stdc/posix/config.d	Wed Nov 12 00:19:18 2008 +0100
@@ -0,0 +1,27 @@
+/**
+ * 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;
+}