diff options
author | Nicholas Clark <nick@ccl4.org> | 2012-07-27 17:53:22 +0200 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2012-07-28 16:27:53 +0200 |
commit | 7c458fae0a6159ea505d310a91a4ffcf379153a2 (patch) | |
tree | 6a4c953f0aa087e8e5e674c6baf32e66d3c558d5 /perlio.c | |
parent | 4c21785fe645f05e6e1a51824029d1cda897d57c (diff) | |
download | perl-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.c | 12 |
1 files changed, 0 insertions, 12 deletions
@@ -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; |