projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
b2de6a2
)
Picky compilers (e.g. vac on AIX 5.2) do not accept statements
H.Merijn Brand [Wed, 2 Feb 2005 12:49:46 +0000 (12:49 +0000)]
between declarations
p4raw-id: //depot/perl@23919
ext/Devel/PPPort/PPPort.xs
patch
|
blob
|
blame
|
history
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);
}