summaryrefslogtreecommitdiff
path: root/regexp.h
diff options
context:
space:
mode:
authorLarry Wall <lwall@netlabs.com>1991-03-21 00:00:00 +0000
committerLarry Wall <lwall@netlabs.com>1991-03-21 00:00:00 +0000
commitfe14fcc35f78a371a174a1d14256c2f35ae4262b (patch)
treed472cb1055c47b9701cb0840969aacdbdbc9354a /regexp.h
parent27e2fb84680b9cc1db17238d5bf10b97626f477f (diff)
downloadperl-fe14fcc35f78a371a174a1d14256c2f35ae4262b.tar.gz
perl 4.0.00: (no release announcement available)perl-4.0.00
So far, 4.0 is still a beta test version. For the last production version, look in pub/perl.3.0/kits@44.
Diffstat (limited to 'regexp.h')
-rw-r--r--regexp.h15
1 files changed, 5 insertions, 10 deletions
diff --git a/regexp.h b/regexp.h
index 39620dae1f..600e630ee7 100644
--- a/regexp.h
+++ b/regexp.h
@@ -5,22 +5,17 @@
* not the System V one.
*/
-/* $Header: regexp.h,v 3.0.1.1 90/08/09 05:12:55 lwall Locked $
+/* $Header: regexp.h,v 4.0 91/03/20 01:39:23 lwall Locked $
*
* $Log: regexp.h,v $
- * Revision 3.0.1.1 90/08/09 05:12:55 lwall
- * patch19: $' broke on embedded nulls
- *
- * Revision 3.0 89/10/18 15:22:46 lwall
- * 3.0 baseline
+ * Revision 4.0 91/03/20 01:39:23 lwall
+ * 4.0 baseline.
*
*/
-#define NSUBEXP 10
-
typedef struct regexp {
- char *startp[NSUBEXP];
- char *endp[NSUBEXP];
+ char **startp;
+ char **endp;
STR *regstart; /* Internal use only. */
char *regstclass;
STR *regmust; /* Internal use only. */