7 extern "C" void abort (void);
8 extern "C" void _exit (int);
14 base(const base&o) { ++count; }
22 // On some Linux boxes, we run the dtor for d twice,
23 // once before exit, and once after!
37 base base_returning_function ();
39 const base& base_ref = base_returning_function ();
44 base base_returning_function () {
45 base local_base_object;
46 return local_base_object;