diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-10-16 16:02:35 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-10-16 16:02:35 +0000 |
commit | 8261f8eb698db59828f3e3dd7a1ee82976ab259e (patch) | |
tree | 3ea5346f672c31284bdb8657b4e964ff2a29eb4b /gv.c | |
parent | 20773dcda05c239bb7300f7eed1a0ff4ef022a0a (diff) | |
download | perl-8261f8eb698db59828f3e3dd7a1ee82976ab259e.tar.gz |
PL_AMG_names is only used by gv.c (as far as Google code search can
see), so it can easily be a static variable inside gv.c. This allows
the implementation to be changed in future Perls within the 5.10.x
series.
p4raw-id: //depot/perl@32116
Diffstat (limited to 'gv.c')
-rw-r--r-- | gv.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -33,6 +33,7 @@ Perl stores its global variables. #include "EXTERN.h" #define PERL_IN_GV_C #include "perl.h" +#include "overload.c" static const char S_autoload[] = "AUTOLOAD"; static const STRLEN S_autolen = sizeof(S_autoload)-1; |