summaryrefslogtreecommitdiff
path: root/embed.h
diff options
context:
space:
mode:
authorGerard Goossen <gerard@tty.nl>2009-10-29 11:05:11 +0100
committerRafael Garcia-Suarez <rgs@consttype.org>2009-11-01 15:48:24 +0100
commit7d0994e057b3340e9b0be219a07a5992e313f0f0 (patch)
treef69a6265f5db8e14b602e2478a38de26611eab5c /embed.h
parent6d5ba409c26980e4e27923c54014d9f9cf834221 (diff)
downloadperl-7d0994e057b3340e9b0be219a07a5992e313f0f0.tar.gz
Use of SV* instead of message, msglen, utf8 to contain error message
Diffstat (limited to 'embed.h')
-rw-r--r--embed.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/embed.h b/embed.h
index 49a4b15a14..58e36ee994 100644
--- a/embed.h
+++ b/embed.h
@@ -2517,7 +2517,7 @@
#endif
#endif
#ifdef PERL_CORE
-#define die_where(a,b) Perl_die_where(aTHX_ a,b)
+#define die_where(a) Perl_die_where(aTHX_ a)
#endif
#define dounwind(a) Perl_dounwind(aTHX_ a)
#ifdef PERL_CORE
@@ -3416,7 +3416,7 @@
#endif
#define whichsig(a) Perl_whichsig(aTHX_ a)
#ifdef PERL_CORE
-#define write_to_stderr(a,b) Perl_write_to_stderr(aTHX_ a,b)
+#define write_to_stderr(a) Perl_write_to_stderr(aTHX_ a)
#define yyerror(a) Perl_yyerror(aTHX_ a)
#endif
#if defined(PERL_CORE) || defined(PERL_EXT)
@@ -4016,8 +4016,8 @@
#ifdef PERL_CORE
#define closest_cop(a,b) S_closest_cop(aTHX_ a,b)
#define mess_alloc() S_mess_alloc(aTHX)
-#define vdie_croak_common(a,b,c,d) S_vdie_croak_common(aTHX_ a,b,c,d)
-#define vdie_common(a,b,c,d) S_vdie_common(aTHX_ a,b,c,d)
+#define vdie_croak_common(a,b) S_vdie_croak_common(aTHX_ a,b)
+#define vdie_common(a,b) S_vdie_common(aTHX_ a,b)
#define write_no_mem() S_write_no_mem(aTHX)
#endif
#if defined(PERL_MEM_LOG) && !defined(PERL_MEM_LOG_NOIMPL)