summaryrefslogtreecommitdiff
path: root/vms/writemain.pl
diff options
context:
space:
mode:
authorDan Sugalski <dan@sidhe.org>1999-08-10 09:34:56 -0700
committerJarkko Hietaniemi <jhi@iki.fi>1999-08-10 22:39:11 +0000
commitd28f7c377ae191ca53d9157f124642cf323614a0 (patch)
tree6c1a399c1e250f23c69dd5af823906a52a0e01c7 /vms/writemain.pl
parent6da84e39ed5bfdbbe350321e38b2730554d2576c (diff)
downloadperl-d28f7c377ae191ca53d9157f124642cf323614a0.tar.gz
Patches needed to get _60 building with
To: vmsperl@perl.org, perl5-porters@perl.org, sarathy@activestate.com, bailey@newman.upenn.edu threads on VMS Message-ID: <Pine.LNX.4.10.9908101631030.18266-100000@tuatha.sidhe.org> p4raw-id: //depot/cfgperl@3955
Diffstat (limited to 'vms/writemain.pl')
-rw-r--r--vms/writemain.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/vms/writemain.pl b/vms/writemain.pl
index b08bf1d924..1843b30206 100644
--- a/vms/writemain.pl
+++ b/vms/writemain.pl
@@ -34,7 +34,7 @@ if (!$ok) {
print OUT <<'EOH';
static void
-xs_init()
+xs_init(pTHX)
{
EOH
@@ -50,7 +50,7 @@ if (@exts) {
foreach $ext (@exts) {
my($subname) = $ext;
$subname =~ s/::/__/g;
- print OUT "extern void boot_${subname} (CV* cv);\n"
+ print OUT "extern void boot_${subname} (pTHX_ CV* cv);\n"
}
# May not actually be a declaration, so put after other declarations
print OUT " dXSUB_SYS;\n";