/* binmode.c Copyright 2000 Red Hat, Inc.This file is part of Cygwin.This software is a copyrighted work licensed under the terms of theCygwin license. Please consult the file "CYGWIN_LICENSE" fordetails. */#include <sys/fcntl.h>externint _fmode;voidcygwin_premain0(int argc,char**argv){
_fmode &= _O_TEXT;
_fmode |= _O_BINARY;}