diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-05-26 16:07:20 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-05-26 16:07:20 +0000 |
commit | 339049b035d3e07ff8c7f574dac68f06816b9af2 (patch) | |
tree | e9a629e87321d08b52b8b6e9a05e24c33805ce30 /av.h | |
parent | 42a116590b56a49035a440a6b0f3a679f91e9375 (diff) | |
download | perl-339049b035d3e07ff8c7f574dac68f06816b9af2.tar.gz |
Rename the members of the SV head union to avoid pre-processor
arguments with embed.h
p4raw-id: //depot/perl@24590
Diffstat (limited to 'av.h')
-rw-r--r-- | av.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -86,7 +86,7 @@ Same as C<av_len()>. Deprecated, use C<av_len()> instead. #define Nullav Null(AV*) -#define AvARRAY(av) ((av)->sv_u.sv_array) +#define AvARRAY(av) ((av)->sv_u.svu_array) #define AvALLOC(av) (*((SV***)&((XPVAV*) SvANY(av))->xav_alloc)) #define AvMAX(av) ((XPVAV*) SvANY(av))->xav_max #define AvFILLp(av) ((XPVAV*) SvANY(av))->xav_fill |