diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-03-25 18:03:00 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-03-25 18:03:00 +0000 |
commit | 8f42b153a33e87e34587f52f491b24c52b63b818 (patch) | |
tree | 99058d45ba346e9be812dc84200f49d01470e934 /intrpvar.h | |
parent | 2c590a56b3b649dadb95831ca47026c0fdf301e3 (diff) | |
download | perl-8f42b153a33e87e34587f52f491b24c52b63b818.tar.gz |
Remove the const qualifier from argv and env variables
p4raw-id: //depot/perl@24077
Diffstat (limited to 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/intrpvar.h b/intrpvar.h index a477777034..6a7bc36879 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -29,7 +29,7 @@ PERLVAR(Iwarnhook, SV *) /* switches */ PERLVAR(Iminus_c, bool) PERLVAR(Ipatchlevel, SV *) -PERLVAR(Ilocalpatches, char **) +PERLVAR(Ilocalpatches, const char **) PERLVARI(Isplitstr, char *, " ") PERLVAR(Ipreprocess, bool) PERLVAR(Iminus_n, bool) |