Fix a function signature missed by #31027 to silence a VC6 warning
Steve Hay [Tue, 24 Apr 2007 13:11:50 +0000 (13:11 +0000)]
p4raw-id: //depot/perl@31056

ext/re/re.xs

index aa87bb6..4ac9e4d 100644 (file)
@@ -11,7 +11,7 @@
 
 START_EXTERN_C
 
-extern regexp* my_re_compile (pTHX_ char* exp, char* xend, U32 pm_flags);
+extern regexp* my_re_compile (pTHX_ const SV * const pattern, const U32 flags);
 extern I32     my_regexec (pTHX_ regexp* prog, char* stringarg, char* strend,
                            char* strbeg, I32 minend, SV* screamer,
                            void* data, U32 flags);