DOS/Windows-specific code: source.c
DJ Delorie
dj@redhat.com
Tue May 8 09:30:00 GMT 2001
Eli Zaretskii <eliz@is.elta.co.il> writes:
> * source.c:openp()
>
> #ifdef _WIN32
> mode |= O_BINARY;
> #endif
>
> I think this is obsolete and should be removed: defining
> CRLF_SOURCE_FILES in xm-whatever should solve the underlying problem.
What I do is this:
#ifndef O_BINARY
#define O_BINARY 0
#endif
Put that somewhere global, and then *always* use O_BINARY and don't
worry about it.
More information about the Gdb
mailing list