From ffbbd35907f4f81fa5f06eef22c4b3af2fa41580 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 12 Apr 1996 16:02:38 +0000 Subject: [DJGPP v2]: Include io.h. (main) [DJGPP v2]: Switch standard streams to binary with setmode. --- lib-src/hexl.c | 11 +++++++++++ 1 file changed, 11 insertions(+) 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 #ifdef MSDOS #include +#if __DJGPP__ >= 2 +#include +#endif #endif #define DEFAULT_GROUPING 0x01 @@ -134,8 +137,12 @@ 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 (;;) { @@ -178,8 +185,12 @@ 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] = ' '; -- cgit v1.2.1