summaryrefslogtreecommitdiff
path: root/gv.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2007-10-16 16:02:35 +0000
committerNicholas Clark <nick@ccl4.org>2007-10-16 16:02:35 +0000
commit8261f8eb698db59828f3e3dd7a1ee82976ab259e (patch)
tree3ea5346f672c31284bdb8657b4e964ff2a29eb4b /gv.c
parent20773dcda05c239bb7300f7eed1a0ff4ef022a0a (diff)
downloadperl-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.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gv.c b/gv.c
index 156f2fbf44..8c0b4e10bd 100644
--- a/gv.c
+++ b/gv.c
@@ -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;