summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib-src/hexl.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/lib-src/hexl.c b/lib-src/hexl.c
index b090dae335b..417d9f285d1 100644
--- a/lib-src/hexl.c
+++ b/lib-src/hexl.c
@@ -2,6 +2,9 @@
#include <ctype.h>
#ifdef MSDOS
#include <fcntl.h>
+#if __DJGPP__ >= 2
+#include <io.h>
+#endif
#endif
#define DEFAULT_GROUPING 0x01
@@ -134,9 +137,13 @@ main (argc, argv)
char buf[18];
#ifdef MSDOS
+#if __DJGPP__ >= 2
+ setmode (fileno (stdout), O_BINARY);
+#else
(stdout)->_flag &= ~_IOTEXT; /* print binary */
_setmode (fileno (stdout), O_BINARY);
#endif
+#endif
for (;;)
{
register int i, c, d;
@@ -178,9 +185,13 @@ main (argc, argv)
else
{
#ifdef MSDOS
+#if __DJGPP__ >= 2
+ setmode (fileno (stdout), O_BINARY);
+#else
(fp)->_flag &= ~_IOTEXT; /* read binary */
_setmode (fileno (fp), O_BINARY);
#endif
+#endif
address = 0;
string[0] = ' ';
string[17] = '\0';