diff options
author | Karl Williamson <public@khwilliamson.com> | 2012-07-06 21:41:07 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2012-07-24 21:13:45 -0600 |
commit | 5f820f894e71b6970a5aa0fd763a84b647fd628a (patch) | |
tree | 047b566b14571564f15ac103658ece621ada89f4 /embed.h | |
parent | 519ebf3da80f5a1caba40962369503de5bdca1b4 (diff) | |
download | perl-5f820f894e71b6970a5aa0fd763a84b647fd628a.tar.gz |
regcomp.c: Extract code to inline function
Future commits will use this paradigm in additional places, so extract
it to a function, so they all do things right. This isn't a great API,
but it works for the few places this will be called.
Diffstat (limited to 'embed.h')
-rw-r--r-- | embed.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -906,6 +906,7 @@ #define add_alternate(a,b,c) S_add_alternate(aTHX_ a,b,c) #define add_cp_to_invlist(a,b) S_add_cp_to_invlist(aTHX_ a,b) #define add_data S_add_data +#define alloc_maybe_populate_EXACT(a,b,c,d) S_alloc_maybe_populate_EXACT(aTHX_ a,b,c,d) #define checkposixcc(a) S_checkposixcc(aTHX_ a) #define cl_and S_cl_and #define cl_anything S_cl_anything |