On Monday 16 April 2007 16:58, [EMAIL PROTECTED] wrote: > + obj_guts = mem_sys_allocate_zeroed(sizeof(Parrot_Object));
The mem_allocate_typed and mem_allocate_zeroed_typed macros make this slightly nicer (and C++ compiler safe too): obj_guts = mem_allocate_zeroed_typed(Parrot_Object); -- c