Avoid warning on QNX.
authorBruno Haible <bruno@clisp.org>
Thu, 28 Aug 2003 13:59:25 +0000 (13:59 +0000)
committerBruno Haible <bruno@clisp.org>
Thu, 28 Aug 2003 13:59:25 +0000 (13:59 +0000)
lib/ChangeLog
lib/binary-io.h

index e37756f..d3c1868 100644 (file)
@@ -1,3 +1,8 @@
+2003-08-28  Bruno Haible  <bruno@clisp.org>
+
+       * binary-io.h: Undefine O_BINARY before defining it. This avoids a
+       warning on QNX, which defines O_BINARY to 000000.
+
 2003-08-24  Bruno Haible  <bruno@clisp.org>
 
        * binary-io.h: Include <stdio.h>, to avoid a compilation error when
index 2229f84..3ff2a37 100644 (file)
@@ -53,6 +53,7 @@
 # endif
 #else
   /* On reasonable systems, binary I/O is the default.  */
+# undef O_BINARY
 # define O_BINARY 0
 # define SET_BINARY(fd) /* nothing */
 #endif