]> git.eshelyaron.com Git - emacs.git/commitdiff
[DOSNT]: Include fcntl.h.
authorRichard M. Stallman <rms@gnu.org>
Sun, 28 Apr 1996 19:06:15 +0000 (19:06 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 28 Apr 1996 19:06:15 +0000 (19:06 +0000)
[WINDOWSNT]: Include io.h.
(main) [MSDOS]: Change conditional to DOS_NT.

lib-src/hexl.c

index beb170613dda6cf705b7c3fd15ebe644a9e53e42..5d71033d4341b6f5664371ff39a163a8d90eef8f 100644 (file)
@@ -1,11 +1,14 @@
 #include <stdio.h>
 #include <ctype.h>
-#ifdef MSDOS
+#ifdef DOS_NT
 #include <fcntl.h>
 #if __DJGPP__ >= 2
 #include <io.h>
 #endif
 #endif
+#ifdef WINDOWSNT
+#include <io.h>
+#endif
 
 #define DEFAULT_GROUPING       0x01
 #define DEFAULT_BASE           16
@@ -136,8 +139,8 @@ main (argc, argv)
        {
          char buf[18];
 
-#ifdef MSDOS
-#if __DJGPP__ >= 2
+#ifdef DOS_NT
+#if (__DJGPP__ >= 2) || (defined WINDOWSNT)
           if (!isatty (fileno (stdout)))
            setmode (fileno (stdout), O_BINARY);
 #else
@@ -185,8 +188,8 @@ main (argc, argv)
        }
       else
        {
-#ifdef MSDOS
-#if __DJGPP__ >= 2
+#ifdef DOS_NT
+#if (__DJGPP__ >= 2) || (defined WINDOWSNT)
           if (!isatty (fileno (fp)))
            setmode (fileno (fp), O_BINARY);
 #else