Make it work with MSVC.
authorBruno Haible <bruno@clisp.org>
Mon, 25 Aug 2003 11:04:49 +0000 (11:04 +0000)
committerBruno Haible <bruno@clisp.org>
Mon, 25 Aug 2003 11:04:49 +0000 (11:04 +0000)
lib/ChangeLog
lib/binary-io.h

index 6371251a0310bda7c507b999592c3dd26ee500e1..e37756fb6758e5958e9f5a1bdc19971704ae95a7 100644 (file)
@@ -1,3 +1,8 @@
+2003-08-24  Bruno Haible  <bruno@clisp.org>
+
+       * binary-io.h: Include <stdio.h>, to avoid a compilation error when
+       MSVC7 <stdio.h> is included later.
+
 2003-08-20  Bruno Haible  <bruno@clisp.org>
 
        * progname.h: New file, from GNU gettext.
index ed74c06f277c3d22327040e08d937b023d5a333a..2229f84c7a9c931aabd7ac8836f2eb63765213e8 100644 (file)
 #ifndef _BINARY_H
 #define _BINARY_H
 
-#include <fcntl.h>
 /* For systems that distinguish between text and binary I/O.
    O_BINARY is usually declared in <fcntl.h>. */
+#include <fcntl.h>
+
+/* The MSVC7 <stdio.h> doesn't like to be included after '#define fileno ...',
+   so we include it here first.  */
+#include <stdio.h>
+
 #if !defined O_BINARY && defined _O_BINARY
   /* For MSC-compatible compilers.  */
 # define O_BINARY _O_BINARY