summaryrefslogtreecommitdiff
path: root/embed.h
diff options
context:
space:
mode:
authorBrian Fraser <fraserbn@gmail.com>2013-04-09 04:27:16 -0300
committerTony Cook <tony@develop-help.com>2013-09-11 10:28:29 +1000
commit90aeefb47309434774bb94bdb3c7a92dedf59563 (patch)
tree2ad34ee21ec441502b43472db01c62467abc8d03 /embed.h
parent30877037d0977c0e3b7a5268b63d626f65d428ab (diff)
downloadperl-90aeefb47309434774bb94bdb3c7a92dedf59563.tar.gz
gv.c: Begin splitting gv_fetchpvn_flags into smaller helper functions.
This commit takes a chunk of code out of gv_fetchpvn_flags and turns it into two fuctions: parse_gv_stash_name and find_default_stash.
Diffstat (limited to 'embed.h')
-rw-r--r--embed.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/embed.h b/embed.h
index 7e0f83ea7f..ddd6645d9c 100644
--- a/embed.h
+++ b/embed.h
@@ -1378,8 +1378,10 @@
#define sequence_num(a) S_sequence_num(aTHX_ a)
# endif
# if defined(PERL_IN_GV_C)
+#define find_default_stash(a,b,c,d,e,f) S_find_default_stash(aTHX_ a,b,c,d,e,f)
#define gv_init_svtype(a,b) S_gv_init_svtype(aTHX_ a,b)
#define gv_magicalize_isa(a) S_gv_magicalize_isa(aTHX_ a)
+#define parse_gv_stash_name(a,b,c,d,e,f,g,h) S_parse_gv_stash_name(aTHX_ a,b,c,d,e,f,g,h)
#define require_tie_mod(a,b,c,d,e) S_require_tie_mod(aTHX_ a,b,c,d,e)
# endif
# if defined(PERL_IN_HV_C)