1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-25 15:00:45 -08:00

(_start): Remove _fmode initialization.

This commit is contained in:
Jason Rumney 2003-05-21 20:43:00 +00:00
parent e13dd0a857
commit 745edc3127

View 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);