diff options
author | Steve Hay <SteveHay@planit.com> | 2005-07-20 10:36:20 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2005-07-20 10:36:20 +0000 |
commit | 4541904d5c57838fc76e9cabcf94ba24cec42568 (patch) | |
tree | d24aab3cd721d4856dadd66ac0e0ef76e8113e02 /handy.h | |
parent | e935c5a40cc2e11d6cc50386820177a932ba7ce1 (diff) | |
download | perl-4541904d5c57838fc76e9cabcf94ba24cec42568.tar.gz |
Fix Newz() backwards-compatibility macro
p4raw-id: //depot/perl@25196
Diffstat (limited to 'handy.h')
-rw-r--r-- | handy.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -701,7 +701,7 @@ Malloc_t Perl_mem_log_free(Malloc_t oldalloc, const char *filename, const int li /* pre 5.9.x compatibility */ #define New(x,v,n,t) Newx(v,n,t) #define Newc(x,v,n,t,c) Newxc(v,n,t,c) -#define Newz(x,v,n,t,c) Newxz(v,n,t,c) +#define Newz(x,v,n,t) Newxz(v,n,t) #define Renew(v,n,t) \ (v = (MEM_WRAP_CHECK_(n,t) MEM_LOG_REALLOC(n,t,v,(t*)saferealloc((Malloc_t)(v),(MEM_SIZE)((n)*sizeof(t)))))) |