summaryrefslogtreecommitdiff
path: root/handy.h
diff options
context:
space:
mode:
authorMarcus Holland-Moritz <mhx-perl@gmx.net>2008-10-24 21:38:48 +0000
committerMarcus Holland-Moritz <mhx-perl@gmx.net>2008-10-24 21:38:48 +0000
commitbef8a12803580c2fb97a03ebe6e7df3e52cd10bf (patch)
tree4a4e9998c4f636e56fe735950a81331848e72bf2 /handy.h
parent4975ecc97f5a7eeb6562945448dc3c62a52309d4 (diff)
downloadperl-bef8a12803580c2fb97a03ebe6e7df3e52cd10bf.tar.gz
Make C++ compilers happy #1: "typename" is a C++ keyword.
p4raw-id: //depot/perl@34574
Diffstat (limited to 'handy.h')
-rw-r--r--handy.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/handy.h b/handy.h
index 39e3ef838c..25988b5193 100644
--- a/handy.h
+++ b/handy.h
@@ -762,9 +762,9 @@ PoisonWith(0xEF) for catching access to freed memory.
* any News() happening...?
*/
-Malloc_t Perl_mem_log_alloc(const UV n, const UV typesize, const char *typename, Malloc_t newalloc, const char *filename, const int linenumber, const char *funcname);
+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);
-Malloc_t Perl_mem_log_realloc(const UV n, const UV typesize, const char *typename, Malloc_t oldalloc, Malloc_t newalloc, const char *filename, const int linenumber, const char *funcname);
+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);
Malloc_t Perl_mem_log_free(Malloc_t oldalloc, const char *filename, const int linenumber, const char *funcname);