fix windows build

This commit is contained in:
Joel Dice 2009-02-16 19:48:29 -07:00
parent ba4e2a6582
commit 17b4c20435

View File

@ -55,14 +55,6 @@ run(void* r)
return 0;
}
void*
allocate(System* s, unsigned size)
{
void* p = s->tryAllocate(size);
if (p == 0) abort();
return p;
}
const bool Verbose = false;
const unsigned Waiting = 1 << 0;