summaryrefslogtreecommitdiff
path: root/perl.h
diff options
context:
space:
mode:
authorSimon Cozens <simon@netthink.co.uk>2001-08-01 06:57:02 -0700
committerJarkko Hietaniemi <jhi@iki.fi>2001-08-01 22:38:31 +0000
commita2efc82216efc10377cf26fd4aff1aa5e66c6687 (patch)
tree6c9717258434d9d96ae509d2c3d7cd229e20b852 /perl.h
parent6bab786b4dc26323c40cdd19dc27ad4499214f4e (diff)
downloadperl-a2efc82216efc10377cf26fd4aff1aa5e66c6687.tar.gz
Pluggable optimizer
Message-ID: <20010801135702.I10442@netthink.co.uk> p4raw-id: //depot/perl@11541
Diffstat (limited to 'perl.h')
-rw-r--r--perl.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/perl.h b/perl.h
index 8e975f1ba0..c68faecc0f 100644
--- a/perl.h
+++ b/perl.h
@@ -3019,6 +3019,7 @@ enum { /* pass one of these to get_vtbl */
#define RsRECORD(sv) (SvROK(sv) && (SvIV(SvRV(sv)) > 0))
/* Enable variables which are pointers to functions */
+typedef void (CPERLscope(*peep_t))(pTHX_ OP* o);
typedef regexp*(CPERLscope(*regcomp_t)) (pTHX_ char* exp, char* xend, PMOP* pm);
typedef I32 (CPERLscope(*regexec_t)) (pTHX_ regexp* prog, char* stringarg,
char* strend, char* strbeg, I32 minend,