In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/78f3c6825221f909e85e8dc3c862579483f92c53?hp=0f848f672af19969695910e47f3dfe808b617836>

- Log -----------------------------------------------------------------
commit 78f3c6825221f909e85e8dc3c862579483f92c53
Author: Nicholas Clark <[email protected]>
Date:   Tue Oct 19 08:42:25 2010 +0100

    Fix C++ build for Fcntl.xs.
    
    96d24b8ce2ce0411 wasn't C++ friendly.
-----------------------------------------------------------------------

Summary of changes:
 ext/Fcntl/Fcntl.xs |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/ext/Fcntl/Fcntl.xs b/ext/Fcntl/Fcntl.xs
index a66f66e..33c3cf9 100644
--- a/ext/Fcntl/Fcntl.xs
+++ b/ext/Fcntl/Fcntl.xs
@@ -33,9 +33,8 @@
    --AD  October 16, 1995
 */
 
-static XS(XS_Fcntl_S_ISREG); /* prototype to pass -Wmissing-prototypes */
-static
-XS(XS_Fcntl_S_ISREG)
+static void
+XS_Fcntl_S_ISREG(pTHX_ CV* cv)
 {
     dVAR;
     dXSARGS;

--
Perl5 Master Repository

Reply via email to