diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-04-22 09:31:16 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-04-22 09:31:16 +0000 |
commit | 54df26348193c7b5acc024fd6db17e462578f17c (patch) | |
tree | 039b0e3774e2183c1b2cd3fd51eddec8f5018a73 /ext/re/re_comp.h | |
parent | 2980942b2f5909e829b4838431ea4ccc49645a4b (diff) | |
download | perl-54df26348193c7b5acc024fd6db17e462578f17c.tar.gz |
"Don't Repeat Yourself" on the "We *really* need to overwrite these
symbols" section.
Minor tweaks to make it possible to use the code unchanged with 5.8.x
p4raw-id: //depot/perl@27938
Diffstat (limited to 'ext/re/re_comp.h')
-rw-r--r-- | ext/re/re_comp.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ext/re/re_comp.h b/ext/re/re_comp.h new file mode 100644 index 0000000000..ba3aae851e --- /dev/null +++ b/ext/re/re_comp.h @@ -0,0 +1,7 @@ +/* For blead, this file needs to do nothing other than pull in the regular + regcomp.h. For the 5.8.x re module it has to do more. + But doing it this way keeps regcomp.c and regexec.c clean. +*/ + +#include "regcomp.h" + |