summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2002-08-13 15:42:15 +0100
committerhv <hv@crypt.org>2002-08-17 00:10:24 +0000
commit3f46c5a680add71a59e98e23e39ddf15f24fffcb (patch)
treea168c8f43883393d5e0eff3da74482fbc0e72e81
parent235e0aa97fa9bda47f8d0fcc847e7f323b19eba1 (diff)
downloadperl-3f46c5a680add71a59e98e23e39ddf15f24fffcb.tar.gz
Re: deb.c compile time error (patchlevel 17721)
Message-ID: <20020813144215.G11939@fdgroup.com> p4raw-id: //depot/perl@17723
-rw-r--r--embed.fnc4
-rw-r--r--embed.h2
-rw-r--r--proto.h2
3 files changed, 4 insertions, 4 deletions
diff --git a/embed.fnc b/embed.fnc
index af9961e7b0..314d134ac5 100644
--- a/embed.fnc
+++ b/embed.fnc
@@ -1361,8 +1361,8 @@ Ap |PerlIO *|PerlIO_stderr
p |void |deb_stack_all
#ifdef PERL_IN_DEB_C
-s |void |deb_stack_n |SV** stack_base, I32 stack_min, \
- I32 stack_max, I32 mark_min, I32 mark_max
+s |void |deb_stack_n |SV** stack_base|I32 stack_min \
+ |I32 stack_max|I32 mark_min|I32 mark_max
#endif
diff --git a/embed.h b/embed.h
index d6c74f5cf3..95e7d963da 100644
--- a/embed.h
+++ b/embed.h
@@ -2786,7 +2786,7 @@
#endif /* PERLIO_LAYERS */
#define deb_stack_all() Perl_deb_stack_all(aTHX)
#ifdef PERL_IN_DEB_C
-#define deb_stack_n(a) S_deb_stack_n(aTHX_ a)
+#define deb_stack_n(a,b,c,d,e) S_deb_stack_n(aTHX_ a,b,c,d,e)
#endif
#define ck_anoncode(a) Perl_ck_anoncode(aTHX_ a)
#define ck_bitop(a) Perl_ck_bitop(aTHX_ a)
diff --git a/proto.h b/proto.h
index 9dabf8132a..2afc6e96ec 100644
--- a/proto.h
+++ b/proto.h
@@ -1390,7 +1390,7 @@ PERL_CALLCONV PerlIO * Perl_PerlIO_stderr(pTHX);
PERL_CALLCONV void Perl_deb_stack_all(pTHX);
#ifdef PERL_IN_DEB_C
-STATIC void S_deb_stack_n(pTHX_ SV** stack_base, I32 stack_min, I32 stack_max, I32 mark_min, I32 mark_max);
+STATIC void S_deb_stack_n(pTHX_ SV** stack_base, I32 stack_min, I32 stack_max, I32 mark_min, I32 mark_max);
#endif