# New Ticket Created by Matt Kraai
# Please include the string: [perl #51796]
# in the subject line of all future correspondence about this issue.
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=51796 >
Howdy,
When I run "make headerizer", it adds a prototype for pobj_flag_dump
to src/packdump.c. The attached patch contains this change.
--
Matt
diff --git a/src/packdump.c b/src/packdump.c
index d692d0d..477678c 100644
--- a/src/packdump.c
+++ b/src/packdump.c
@@ -34,6 +34,10 @@ static void PackFile_Constant_dump(PARROT_INTERP,
__attribute__nonnull__(2)
__attribute__nonnull__(3);
+static void pobj_flag_dump(PARROT_INTERP, ARGIN(long flags))
+ __attribute__nonnull__(1)
+ __attribute__nonnull__(2);
+
/* HEADERIZER END: static */