summaryrefslogtreecommitdiff
path: root/regcomp.pl
diff options
context:
space:
mode:
authorDaniel MuiƱo <dmuino@afip.gov.ar>2000-08-14 13:42:47 -0300
committerJarkko Hietaniemi <jhi@iki.fi>2000-08-14 20:47:36 +0000
commit82fd35453124831b5878ff6b36c895d237db4bcb (patch)
tree91298aefb5dc1f0b584ac949250769c1a10f1a2f /regcomp.pl
parent88f55726cab379f3aebec583e103fae71ab6af55 (diff)
downloadperl-82fd35453124831b5878ff6b36c895d237db4bcb.tar.gz
warning: storage class after type is obsolescent
Message-ID: <20000814164247.A16368@con2-dgi> p4raw-id: //depot/perl@6623
Diffstat (limited to 'regcomp.pl')
-rw-r--r--regcomp.pl8
1 files changed, 4 insertions, 4 deletions
diff --git a/regcomp.pl b/regcomp.pl
index d7d0733010..6ae847882d 100644
--- a/regcomp.pl
+++ b/regcomp.pl
@@ -57,7 +57,7 @@ print OUT <<EOP;
#ifdef REG_COMP_C
-const static U8 regarglen[] = {
+static const U8 regarglen[] = {
EOP
$ind = 0;
@@ -73,7 +73,7 @@ EOP
print OUT <<EOP;
};
-const static char reg_off_by_arg[] = {
+static const char reg_off_by_arg[] = {
EOP
$ind = 0;
@@ -89,7 +89,7 @@ print OUT <<EOP;
};
#ifdef DEBUGGING
-const static char * const reg_name[] = {
+static const char * const reg_name[] = {
EOP
$ind = 0;
@@ -105,7 +105,7 @@ EOP
print OUT <<EOP;
};
-const static int reg_num = $tot;
+static const int reg_num = $tot;
#endif /* DEBUGGING */
#endif /* REG_COMP_C */