diff options
author | George Greer <perl@greerga.m-l.org> | 2010-10-29 20:39:33 -0400 |
---|---|---|
committer | George Greer <perl@greerga.m-l.org> | 2010-10-29 20:39:33 -0400 |
commit | 5e4a14841d50b9a740b14b0a825dbe1e873e667a (patch) | |
tree | 444953c34abf2c121ff830a5ecc2a8f86c470583 /dist | |
parent | 39e120c169648f29c73011fa39ae5fa6ed4e082e (diff) | |
download | perl-5e4a14841d50b9a740b14b0a825dbe1e873e667a.tar.gz |
Fix Math::BigInt::FastCalc build under Win32 with croak_xs_usage().
Diffstat (limited to 'dist')
-rw-r--r-- | dist/Math-BigInt-FastCalc/FastCalc.xs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/Math-BigInt-FastCalc/FastCalc.xs b/dist/Math-BigInt-FastCalc/FastCalc.xs index dfff9f4382..0d67eb7009 100644 --- a/dist/Math-BigInt-FastCalc/FastCalc.xs +++ b/dist/Math-BigInt-FastCalc/FastCalc.xs @@ -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)); } |