diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-02-15 03:07:08 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-02-15 03:07:08 +0000 |
commit | 08105a92a3e1f0f7ac18e8807e8c0cad635b748a (patch) | |
tree | fe7b7b715c945c89315f70698326c7063b5d14a7 /universal.c | |
parent | 86cb71737ed277fd6cd123008b871f7a00c2944b (diff) | |
download | perl-08105a92a3e1f0f7ac18e8807e8c0cad635b748a.tar.gz |
add const qualifier to most char* prototypes, handle ripple effect
p4raw-id: //depot/perl@2924
Diffstat (limited to 'universal.c')
-rw-r--r-- | universal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/universal.c b/universal.c index 4f76d92255..7d8ced3b0f 100644 --- a/universal.c +++ b/universal.c @@ -7,7 +7,7 @@ */ STATIC SV * -isa_lookup(HV *stash, char *name, int len, int level) +isa_lookup(HV *stash, const char *name, int len, int level) { AV* av; GV* gv; @@ -73,7 +73,7 @@ isa_lookup(HV *stash, char *name, int len, int level) } bool -sv_derived_from(SV *sv, char *name) +sv_derived_from(SV *sv, const char *name) { SV *rv; char *type; |