diff options
author | Spider Boardman <spider@orb.nashua.nh.us> | 2001-12-08 19:09:23 -0500 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-09 15:00:50 +0000 |
commit | 95f0a2f1ffc68ef908768ec5d39e4102afd28c1e (patch) | |
tree | 6d6c7cf9004e0c6dae9629f09bab6144eeec3347 /embed.h | |
parent | 5ec554fbe2d22a7213ac94890d84ed925ba9af4b (diff) | |
download | perl-95f0a2f1ffc68ef908768ec5d39e4102afd28c1e.tar.gz |
Re: attributes are broken
Message-Id: <200112090509.AAA02053@Orb.Nashua.NH.US>
p4raw-id: //depot/perl@13543
Diffstat (limited to 'embed.h')
-rw-r--r-- | embed.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -928,6 +928,7 @@ #define my_kid S_my_kid #define dup_attrlist S_dup_attrlist #define apply_attrs S_apply_attrs +#define apply_attrs_my S_apply_attrs_my # if defined(PL_OP_SLAB_ALLOC) #define Slab_Alloc S_Slab_Alloc # endif @@ -2434,9 +2435,10 @@ # endif #define cv_clone2(a,b) S_cv_clone2(aTHX_ a,b) #define scalar_mod_type(a,b) S_scalar_mod_type(aTHX_ a,b) -#define my_kid(a,b) S_my_kid(aTHX_ a,b) +#define my_kid(a,b,c) S_my_kid(aTHX_ a,b,c) #define dup_attrlist(a) S_dup_attrlist(aTHX_ a) -#define apply_attrs(a,b,c) S_apply_attrs(aTHX_ a,b,c) +#define apply_attrs(a,b,c,d) S_apply_attrs(aTHX_ a,b,c,d) +#define apply_attrs_my(a,b,c,d) S_apply_attrs_my(aTHX_ a,b,c,d) # if defined(PL_OP_SLAB_ALLOC) #define Slab_Alloc(a,b) S_Slab_Alloc(aTHX_ a,b) # endif |