Very basic stuff working on linux 32-bit with dmd and phobos2.

This commit is contained in:
Steve King 2010-08-10 21:55:30 -07:00
commit 67f0225e42
152 changed files with 113 additions and 0 deletions

View file

@ -1,19 +0,0 @@
module minwin.logging;
public import std.stream;
//version=StdOutLog;
version (LOG) {
Stream log;
version (StdOutLog) {
static this() {
log = stdout;
}
} else {
static this() {
log = new BufferedFile("log.txt",FileMode.OutNew);
}
}
}