A couple issues compiling without the C stdlib/runtime
///////////////////////////////////////////////////////////////////////
#include <typeinfo.h>
type_info::~type_info()
{
type_info::_Type_info_dtor(this);
}
void __cdecl type_info::_Type_info_dtor(type_info * WSUNUSED(t))
{
}
///////////////////////////////////////////////////////////////////////
everything works fine. Is there any way to get around this without a hack?
2. When calling a virtual function (any) it crashes.
I can provide more info on these issues if need be. Last time I filed a bug report it was already fixed, so maybe that's happened again.

