]> code.delx.au - gnu-emacs/commitdiff
(_start): Remove _fmode initialization.
authorJason Rumney <jasonr@gnu.org>
Wed, 21 May 2003 20:43:00 +0000 (20:43 +0000)
committerJason Rumney <jasonr@gnu.org>
Wed, 21 May 2003 20:43:00 +0000 (20:43 +0000)
src/unexw32.c

index 60cd9517027ad1650506228d5057eee802541bb6..ece35459d63328e656469984ddaf83a468ffd348 100644 (file)
@@ -23,7 +23,6 @@ Boston, MA 02111-1307, USA.
 
 #include <config.h>
 
-#include <stdlib.h>    /* _fmode */
 #include <stdio.h>
 #include <fcntl.h>
 #include <time.h>
@@ -112,10 +111,6 @@ _start (void)
   /* Grab our malloc arena space now, before CRT starts up. */
   init_heap ();
 
-  /* The default behavior is to treat files as binary and patch up
-     text files appropriately, in accordance with the MSDOS code.  */
-  _fmode = O_BINARY;
-
   /* This prevents ctrl-c's in shells running while we're suspended from
      having us exit.  */
   SetConsoleCtrlHandler ((PHANDLER_ROUTINE) ctrl_c_handler, TRUE);