This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Picky compilers (e.g. vac on AIX 5.2) do not accept statements
[perl5.git]
/
ext
/
Devel
/
PPPort
/
PPPort.xs
diff --git
a/ext/Devel/PPPort/PPPort.xs
b/ext/Devel/PPPort/PPPort.xs
index
ed3c379
..
e0bfb31
100644
(file)
--- a/
ext/Devel/PPPort/PPPort.xs
+++ b/
ext/Devel/PPPort/PPPort.xs
@@
-102,8
+102,9
@@
XS(XS_Devel__PPPort_dXSTARG)
{
dXSARGS;
dXSTARG;
+ IV iv;
SP -= items;
-
IV
iv = SvIV(ST(0)) + 1;
+ iv = SvIV(ST(0)) + 1;
PUSHi(iv);
XSRETURN(1);
}