From 8877297842b5b3706977e02b609692bf44fb2462 Mon Sep 17 00:00:00 2001 From: Brian Fraser Date: Tue, 4 Feb 2014 00:47:12 -0300 Subject: Fix the prototypes of some functions without context Their prototypes are (void), but the implementation was () --- util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'util.c') diff --git a/util.c b/util.c index 47280a858b..9d4b24680a 100644 --- a/util.c +++ b/util.c @@ -1697,7 +1697,7 @@ paths reduces CPU cache pressure. */ void -Perl_croak_no_modify() +Perl_croak_no_modify(void) { Perl_croak_nocontext( "%s", PL_no_modify); } @@ -1706,7 +1706,7 @@ Perl_croak_no_modify() This is typically called when malloc returns NULL. */ void -Perl_croak_no_mem() +Perl_croak_no_mem(void) { dTHX; int rc; -- cgit v1.2.1