This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Fix Math::BigInt::FastCalc build under Win32 with croak_xs_usage().
authorGeorge Greer <perl@greerga.m-l.org>
Sat, 30 Oct 2010 00:39:33 +0000 (20:39 -0400)
committerGeorge Greer <perl@greerga.m-l.org>
Sat, 30 Oct 2010 00:39:33 +0000 (20:39 -0400)
dist/Math-BigInt-FastCalc/FastCalc.xs

index dfff9f4..0d67eb7 100644 (file)
@@ -37,7 +37,7 @@ PROTOTYPES: DISABLE
 BOOT:
 {
     if (items < 4)
-       S_croak_xs_usage(aTHX_ cv, "package, version, base_len, base");
+       croak_xs_usage(aTHX_ cv, "package, version, base_len, base");
     XS_BASE_LEN = SvIV(ST(2)); 
     XS_BASE = SvNV(ST(3)); 
 }