summaryrefslogtreecommitdiff
path: root/perlio.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2012-07-27 17:53:22 +0200
committerNicholas Clark <nick@ccl4.org>2012-07-28 16:27:53 +0200
commit7c458fae0a6159ea505d310a91a4ffcf379153a2 (patch)
tree6a4c953f0aa087e8e5e674c6baf32e66d3c558d5 /perlio.c
parent4c21785fe645f05e6e1a51824029d1cda897d57c (diff)
downloadperl-7c458fae0a6159ea505d310a91a4ffcf379153a2.tar.gz
Remove dead code related to the Atari ST port of perl 4.0 patchlevel 19
The subdirectory containing the port specific files was purged when 5.000 was released, but changes made to other files were not removed.
Diffstat (limited to 'perlio.c')
-rw-r--r--perlio.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/perlio.c b/perlio.c
index a593c486c7..4ad6adacbb 100644
--- a/perlio.c
+++ b/perlio.c
@@ -141,17 +141,6 @@ perlsio_binmode(FILE *fp, int iotype, int mode)
* This used to be contents of do_binmode in doio.c
*/
#ifdef DOSISH
-# if defined(atarist)
- PERL_UNUSED_ARG(iotype);
- if (!fflush(fp)) {
- if (mode & O_BINARY)
- ((FILE *) fp)->_flag |= _IOBIN;
- else
- ((FILE *) fp)->_flag &= ~_IOBIN;
- return 1;
- }
- return 0;
-# else
dTHX;
PERL_UNUSED_ARG(iotype);
#ifdef NETWARE
@@ -163,7 +152,6 @@ perlsio_binmode(FILE *fp, int iotype, int mode)
}
else
return 0;
-# endif
#else
# if defined(USEMYBINMODE)
dTHX;