[svn-r1953] replaced the HAVE__O_BINARY flag with a O_BINARY

This commit is contained in:
Patrick Lu 2000-02-09 14:10:12 -05:00
parent 6e765dd3ca
commit 61420a3c14

View File

@ -579,7 +579,7 @@ __DLL__ int HDfprintf (FILE *stream, const char *fmt, ...);
#define HDmkfifo(S,M) mkfifo(S,M)
#define HDmktime(T) mktime(T)
#define HDmodf(X,Y) modf(X,Y)
#ifdef HAVE__O_BINARY
#ifdef O_BINARY
#define HDopen(S,F,M) open(S,F|_O_BINARY,M)
#else
#define HDopen(S,F,M) open(S,F,M)