summaryrefslogtreecommitdiff
path: root/regcomp.h
diff options
context:
space:
mode:
authorCharles Bailey <bailey@newman.upenn.edu>1998-01-02 22:54:29 -0500
committerMalcolm Beattie <mbeattie@sable.ox.ac.uk>1998-01-08 12:56:31 +0000
commitfc1ce8cc0aa3c1d2926edfb2f302ea8c60b40168 (patch)
treed739c6f7d0538e687f6a8a3be61793919216e4f7 /regcomp.h
parent0151c6efc77004eadcc86505e0e29b10208d3f66 (diff)
downloadperl-fc1ce8cc0aa3c1d2926edfb2f302ea8c60b40168.tar.gz
Assorted VMS patches (mostly VMS makefile update for new headers):
Subject: [PATCH] VMS update for 5.004_56 p4raw-id: //depot/perl@403
Diffstat (limited to 'regcomp.h')
-rw-r--r--regcomp.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/regcomp.h b/regcomp.h
index fe29b2dd06..b46c14f6cd 100644
--- a/regcomp.h
+++ b/regcomp.h
@@ -209,9 +209,9 @@ EXTCONST U8 regkind[] = {
/* The following have no fixed length. char* since we do strchr on it. */
#ifndef DOINIT
-EXT const char varies[];
+EXTCONST char varies[];
#else
-EXT const char varies[] = {
+EXTCONST char varies[] = {
BRANCH, BACK, STAR, PLUS, CURLY, CURLYX, REF, REFF, REFFL,
WHILEM, CURLYM, CURLYN, BRANCHJ, IFTHEN, SUSPEND, 0
};
@@ -219,9 +219,9 @@ EXT const char varies[] = {
/* The following always have a length of 1. char* since we do strchr on it. */
#ifndef DOINIT
-EXT const char simple[];
+EXTCONST char simple[];
#else
-EXT const char simple[] = {
+EXTCONST char simple[] = {
ANY, SANY, ANYOF,
ALNUM, ALNUML, NALNUM, NALNUML,
SPACE, SPACEL, NSPACE, NSPACEL,