diff lphobos/phobos.d @ 88:058d3925950e trunk

[svn r92] Fixed support for statically initialized unions. lots of bugfixes as cleanups too.
author lindquist
date Tue, 06 Nov 2007 10:03:14 +0100
parents fd32135dca3e
children ccca1c13e13a
line wrap: on
line diff
--- a/lphobos/phobos.d	Sat Nov 03 14:48:33 2007 +0100
+++ b/lphobos/phobos.d	Tue Nov 06 10:03:14 2007 +0100
@@ -3,7 +3,28 @@
 import
 std.array,
 std.ctype,
+std.intrinsic,
+std.stdint,
 std.stdio,
 std.stdarg,
 std.uni,
-std.utf;
\ No newline at end of file
+std.utf,
+
+std.c.fenv,
+std.c.locale,
+std.c.math,
+std.c.process,
+std.c.stdarg,
+std.c.stddef,
+std.c.stdio,
+std.c.stdlib,
+std.c.string,
+std.c.time;
+
+version(linux) {
+    import
+    std.c.linux.linux,
+    std.c.linux.linuxextern,
+    std.c.linux.pthread,
+    std.c.linux.socket;
+}