Mailing-List: contact cygwin-help@sourceware.cygnus.com; run by ezmlm
List-Subscribe: <mailto:cygwin-subscribe@sources.redhat.com>
List-Archive: <http://sources.redhat.com/ml/cygwin/>
List-Post: <mailto:cygwin@sources.redhat.com>
List-Help: <mailto:cygwin-help@sources.redhat.com>, <http://sources.redhat.com/ml/#faqs>
Sender: cygwin-owner@sources.redhat.com
Delivered-To: mailing list cygwin@sources.redhat.com
Date: Wed, 22 Nov 2000 18:45:22 -0500
Message-Id: <200011222345.SAA01742@envy.delorie.com>
X-Authentication-Warning: envy.delorie.com: dj set sender to dj@envy.delorie.com using -f
From: DJ Delorie <dj@delorie.com>
To: bedge@sattel.com
CC: cygwin@sources.redhat.com
In-reply-to: <3A1C5A1D.D7D31B79@sattel.com> (message from Bruce Edge on Wed,
	22 Nov 2000 15:43:25 -0800)
Subject: Re: serial port and unwanted NL -> CR/LF tranlastion
References: <3A1C4FD1.C9B77949@sattel.com> <200011222314.SAA01402@envy.delorie.com> <3A1C5A1D.D7D31B79@sattel.com>


> > #ifndef O_BINARY
> > #define O_BINARY 0
> > #endif
> > 
> > open( name, O_RDWR | O_NOCTTY | O_NONBLOCK | O_BINARY )
> 
> Wouldn't this just be OR'ing a 0 into the flags?

Not on platforms that support O_BINARY, like cygwin and djgpp.  Don't
forget to #include <fcntl.h>.  The #define in the sample is for unix
platforms, like Linux, that don't have text/binary flags.


--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

