From 5af11cab92a8d4ed9b0cd7a46f05cf02a8ba901e Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Fri, 26 May 2000 13:11:57 +0000 Subject: Eli Zaretskii's DOSish file name patches. --- gprof/gmon_io.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'gprof/gmon_io.h') diff --git a/gprof/gmon_io.h b/gprof/gmon_io.h index bf257a4..06bca37 100644 --- a/gprof/gmon_io.h +++ b/gprof/gmon_io.h @@ -4,6 +4,24 @@ #include "bfd.h" #include "gmon.h" +/* Some platforms need to put stdin into binary mode, to read + binary files. */ +#include "sysdep.h" +#ifdef HAVE_SETMODE +#ifndef O_BINARY +#ifdef _O_BINARY +#define O_BINARY _O_BINARY +#define setmode _setmode +#else +#define O_BINARY 0 +#endif +#endif +#if O_BINARY +#include +#define SET_BINARY(f) do { if (!isatty(f)) setmode(f,O_BINARY); } while (0) +#endif +#endif + #define INPUT_HISTOGRAM (1<<0) #define INPUT_CALL_GRAPH (1<<1) #define INPUT_BB_COUNTS (1<<2) -- cgit v1.1