summaryrefslogtreecommitdiff
path: root/perlio.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2005-04-29 14:02:01 +0300
committerSteve Hay <SteveHay@planit.com>2005-04-29 09:07:19 +0000
commit5ca1d77ff41a74d34e43fa21ea5727d105ee3601 (patch)
tree75fd322a9dbc57533a77b2cd8a37c14bae0de7f3 /perlio.c
parent605881df1187f0374622b9de459bb7d803f7d806 (diff)
downloadperl-5ca1d77ff41a74d34e43fa21ea5727d105ee3601.tar.gz
one cannot "static" exported functions
Message-ID: <B356D8F434D20B40A8CEDAEC305A1F2453D705@esebe105.NOE.Nokia.com> p4raw-id: //depot/perl@24353
Diffstat (limited to 'perlio.c')
-rw-r--r--perlio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/perlio.c b/perlio.c
index dae7f9bc89..3f659ca4a0 100644
--- a/perlio.c
+++ b/perlio.c
@@ -861,7 +861,7 @@ PerlIO_tab_sv(pTHX_ PerlIO_funcs *tab)
return sv;
}
-static XS(XS_PerlIO__Layer__NoWarnings)
+XS(XS_PerlIO__Layer__NoWarnings)
{
/* This is used as a %SIG{__WARN__} handler to supress warnings
during loading of layers.
@@ -872,7 +872,7 @@ static XS(XS_PerlIO__Layer__NoWarnings)
XSRETURN(0);
}
-static XS(XS_PerlIO__Layer__find)
+XS(XS_PerlIO__Layer__find)
{
dXSARGS;
if (items < 2)