From: Steve Hay Date: Tue, 24 Apr 2007 13:11:50 +0000 (+0000) Subject: Fix a function signature missed by #31027 to silence a VC6 warning X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ce42cfb63805df84ed063b886927474865b1b1dc;p=p5sagit%2Fp5-mst-13.2.git Fix a function signature missed by #31027 to silence a VC6 warning p4raw-id: //depot/perl@31056 --- diff --git a/ext/re/re.xs b/ext/re/re.xs index aa87bb6..4ac9e4d 100644 --- a/ext/re/re.xs +++ b/ext/re/re.xs @@ -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);