summaryrefslogtreecommitdiff
path: root/pp_ctl.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-06-02 00:48:50 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-06-02 00:48:50 +0000
commitba106d47906768b6e657462b9a484fe0c3a0f0d5 (patch)
treefe43417a2002a0c21277647d86a96e9b4b23368f /pp_ctl.c
parent58a40671cc13fcd5c38641be59cb1e7f87a5e905 (diff)
downloadperl-ba106d47906768b6e657462b9a484fe0c3a0f0d5.tar.gz
remove stray K&R-isms
p4raw-id: //depot/perl@3515
Diffstat (limited to 'pp_ctl.c')
-rw-r--r--pp_ctl.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/pp_ctl.c b/pp_ctl.c
index 9e78a31f4a..44c2b52eb3 100644
--- a/pp_ctl.c
+++ b/pp_ctl.c
@@ -3591,10 +3591,7 @@ STATIC void
#ifdef PERL_OBJECT
qsortsv(SV ** array, size_t num_elts, SVCOMPARE compare)
#else
-qsortsv(
- SV ** array,
- size_t num_elts,
- I32 (*compare)(SV *a, SV *b))
+qsortsv(SV ** array, size_t num_elts, I32 (*compare)(SV *a, SV *b))
#endif
{
register SV * temp;