summaryrefslogtreecommitdiff
path: root/perlio.c
diff options
context:
space:
mode:
authorDagfinn Ilmari Mannsåker <ilmari@ilmari.org>2020-07-06 16:30:53 +0100
committerDagfinn Ilmari Mannsåker <ilmari@ilmari.org>2021-10-08 19:21:33 +0100
commit2eb109a4d326f05244e37f956ca8cd8b0db22b19 (patch)
treea8298fe2c529c6d6438fd75c144d91b18823824d /perlio.c
parent07a6208729c01c230010594c3e08a946ab0ccbef (diff)
downloadperl-2eb109a4d326f05244e37f956ca8cd8b0db22b19.tar.gz
Remove NetWare support
The build has been broken since 2009.
Diffstat (limited to 'perlio.c')
-rw-r--r--perlio.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/perlio.c b/perlio.c
index 94e1dcdab7..2933cb64f6 100644
--- a/perlio.c
+++ b/perlio.c
@@ -123,11 +123,7 @@ perlsio_binmode(FILE *fp, int iotype, int mode)
#ifdef DOSISH
dTHX;
PERL_UNUSED_ARG(iotype);
-# ifdef NETWARE
- if (PerlLIO_setmode(fp, mode) != -1) {
-# else
if (PerlLIO_setmode(fileno(fp), mode) != -1) {
-# endif
return 1;
}
else