diff options
author | Matthew Horsfall <wolfsage@gmail.com> | 2016-04-01 12:44:49 -0400 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2016-04-05 12:08:24 +0100 |
commit | 6fb87544af0ff2b9b9c12038bc0fb261f56a7d88 (patch) | |
tree | 66da80f2fbe098887d8e0b27081ead9197097b5b /handy.h | |
parent | 726368e016b611dfdf44e3a9a53e572b2e25de73 (diff) | |
download | perl-6fb87544af0ff2b9b9c12038bc0fb261f56a7d88.tar.gz |
Get -Accflags=-DPERL_MEM_LOG compiling again
It had rotted a bit Well, more than one probably.
Move the declarations of the functions Perl_mem_log_alloc etc from handy.h
into embed.fnc where whey belong, and where Malloc_t will have already
been defined.
Diffstat (limited to 'handy.h')
-rw-r--r-- | handy.h | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -2049,12 +2049,6 @@ PoisonWith(0xEF) for catching access to freed memory. * - lots of ENV reads */ -PERL_CALLCONV Malloc_t Perl_mem_log_alloc(const UV n, const UV typesize, const char *type_name, Malloc_t newalloc, const char *filename, const int linenumber, const char *funcname); - -PERL_CALLCONV Malloc_t Perl_mem_log_realloc(const UV n, const UV typesize, const char *type_name, Malloc_t oldalloc, Malloc_t newalloc, const char *filename, const int linenumber, const char *funcname); - -PERL_CALLCONV Malloc_t Perl_mem_log_free(Malloc_t oldalloc, const char *filename, const int linenumber, const char *funcname); - # ifdef PERL_CORE # ifndef PERL_MEM_LOG_NOIMPL enum mem_log_type { |