fluffos-1.22/
fluffos-1.22/Win32/
fluffos-1.22/compat/
fluffos-1.22/testsuite/
fluffos-1.22/testsuite/clone/
fluffos-1.22/testsuite/command/
fluffos-1.22/testsuite/data/
fluffos-1.22/testsuite/etc/
fluffos-1.22/testsuite/include/
fluffos-1.22/testsuite/inherit/
fluffos-1.22/testsuite/inherit/master/
fluffos-1.22/testsuite/log/
fluffos-1.22/testsuite/single/
fluffos-1.22/testsuite/single/tests/compiler/
fluffos-1.22/testsuite/single/tests/efuns/
fluffos-1.22/testsuite/single/tests/operators/
fluffos-1.22/testsuite/u/
fluffos-1.22/tmp/
void do_tests() {
#ifndef __NO_ENVIRONMENT__
    object ob;
    
    foreach (ob in deep_inventory(this_object()))
	if (ob)
	    destruct(ob);
    new(__FILE__, this_object());
    new(__FILE__, this_object(), 1);
    ASSERT(sizeof(deep_inventory(this_object())) == 4);
#endif
}

void create(object ob, int flag) {
#ifndef __NO_ENVIRONMENT__
    if (ob) move_object(ob);
    if (flag) {
	new(__FILE__, this_object());
	new(__FILE__, this_object());
    }
#endif
}