diff options
author | Perl 5 Porters <perl5-porters@africa.nicoh.com> | 1996-09-01 22:00:43 +0000 |
---|---|---|
committer | Andy Dougherty <doughera@lafcol.lafayette.edu> | 1996-09-01 22:00:43 +0000 |
commit | f967eb5f7ea656df97e47541e42689728310e560 (patch) | |
tree | ecc5c7bba743513bb24a37d307e0e84e8839d16e /proto.h | |
parent | a26b07455ad7b4e24ed0c8c0c352c4cfa06b15ec (diff) | |
download | perl-f967eb5f7ea656df97e47541e42689728310e560.tar.gz |
perl 5.003_04: dump.c gv.c op.c pp_ctl.c pp_sys.c proto.h run.c
This patch changes neither behavior nor performance. However, it does
reduce code size and improve maintainability by combining some common
code in gv_fullname() and gv_efullname().
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -125,12 +125,12 @@ GV* gv_AVadd _((GV* gv)); GV* gv_HVadd _((GV* gv)); GV* gv_IOadd _((GV* gv)); void gv_check _((HV* stash)); -void gv_efullname _((SV* sv, GV* gv)); +void gv_efullname _((SV *sv, GV *gv, char *prefix)); GV* gv_fetchfile _((char* name)); GV* gv_fetchmeth _((HV* stash, char* name, STRLEN len, I32 level)); GV* gv_fetchmethod _((HV* stash, char* name)); GV* gv_fetchpv _((char* name, I32 add, I32 sv_type)); -void gv_fullname _((SV* sv, GV* gv)); +void gv_fullname _((SV *sv, GV *gv, char *prefix)); void gv_init _((GV *gv, HV *stash, char *name, STRLEN len, int multi)); HV* gv_stashpv _((char* name, I32 create)); HV* gv_stashpvn _((char* name, U32 namelen, I32 create)); |