diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-05-02 11:15:26 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-05-02 11:15:26 +0000 |
commit | 128165928a7fa68e9b3adbdf3695141c97adb115 (patch) | |
tree | 686772b21c9493c5f8310f18565ee0a60050fd49 /embed.h | |
parent | 9b38b30791d5c3d84f35037508a73dd07542022f (diff) | |
download | perl-128165928a7fa68e9b3adbdf3695141c97adb115.tar.gz |
De-duplicate the code that creates new GPs into Perl_newGP().
p4raw-id: //depot/perl@28058
Diffstat (limited to 'embed.h')
-rw-r--r-- | embed.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -2430,6 +2430,8 @@ #define gv_fetchpv(a,b,c) Perl_gv_fetchpv(aTHX_ a,b,c) #define gv_fullname(a,b) Perl_gv_fullname(aTHX_ a,b) #define gv_fullname4(a,b,c,d) Perl_gv_fullname4(aTHX_ a,b,c,d) +#ifdef PERL_CORE +#endif #define gv_init(a,b,c,d,e) Perl_gv_init(aTHX_ a,b,c,d,e) #define gv_name_set(a,b,c,d) Perl_gv_name_set(aTHX_ a,b,c,d) #define gv_stashpv(a,b) Perl_gv_stashpv(aTHX_ a,b) |