diff options
author | Marcus Holland-Moritz <mhx-perl@gmx.net> | 2008-10-24 16:37:49 +0000 |
---|---|---|
committer | Marcus Holland-Moritz <mhx-perl@gmx.net> | 2008-10-24 16:37:49 +0000 |
commit | 56b5603ec7962bbd71d2b0950444e5617e6c8329 (patch) | |
tree | e3d11bd5b38f305520e9d7b33c85f9c7a9a54be3 /proto.h | |
parent | d7a2c63ca1dd960ced99dbacbd31f848d2ffa77f (diff) | |
download | perl-56b5603ec7962bbd71d2b0950444e5617e6c8329.tar.gz |
Run 'make regen' for #34567 and #34568.
p4raw-id: //depot/perl@34569
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -5887,6 +5887,15 @@ STATIC bool S_vdie_common(pTHX_ const char *message, STRLEN msglen, I32 utf8, bo STATIC char * S_write_no_mem(pTHX) __attribute__noreturn__; +#if defined(PERL_MEM_LOG) && defined(PERL_MEM_LOG_STDERR) +STATIC void S_mem_log_common(enum mem_log_type mlt, const UV n, const UV typesize, const char *typename, const SV *sv, Malloc_t oldalloc, Malloc_t newalloc, const char *filename, const int linenumber, const char *funcname) + __attribute__nonnull__(4) + __attribute__nonnull__(8) + __attribute__nonnull__(10); +#define PERL_ARGS_ASSERT_MEM_LOG_COMMON \ + assert(typename); assert(filename); assert(funcname) + +#endif #endif #if defined(PERL_IN_NUMERIC_C) || defined(PERL_DECL_PROT) |