# New Ticket Created by Mark Glines # Please include the string: [perl #43855] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=43855 >
There's a comment in embed.h which says: /* XXX Parrot_init() should be removed, no longer required for embedders */ This comment has been there since April 2006. The Parrot_init() prototype is redundant with the one in interpreter.h. I removed the one in embed.h and saw no ill effects. So, remove it. Mark
=== include/parrot/embed.h ================================================================== --- include/parrot/embed.h (revision 21442) +++ include/parrot/embed.h (local) @@ -24,8 +24,6 @@ PARROT_API Parrot_Interp Parrot_new(Parrot_Interp parent); -/* XXX Parrot_init() should be removed, no longer required for embedders */ -PARROT_API void Parrot_init(Parrot_Interp); PARROT_API void Parrot_init_stacktop(Parrot_Interp, void *); PARROT_API void Parrot_set_flag(Parrot_Interp, Parrot_Int);