summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-04-12 16:02:38 +0000
committerRichard M. Stallman <rms@gnu.org>1996-04-12 16:02:38 +0000
commitffbbd35907f4f81fa5f06eef22c4b3af2fa41580 (patch)
tree2e24ba5980c01f937959b10c006caa2ac59d08c8
parent0801c335f555e4e3e0acf3ed44a05eb4d480e33d (diff)
downloademacs-ffbbd35907f4f81fa5f06eef22c4b3af2fa41580.tar.gz
[DJGPP v2]: Include io.h.
(main) [DJGPP v2]: Switch standard streams to binary with setmode.
-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';