diff options
author | Alan Modra <amodra@gmail.com> | 2008-08-25 04:38:45 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2008-08-25 04:38:45 +0000 |
commit | 81e80ddaa918d80abefd529f8c1e8b2a01c240db (patch) | |
tree | 50c385492a15489adfaa44fbdcbd3a1d3da8f800 /gprof/gmon_io.h | |
parent | 4cef8a9f87d907d5d188b64178b8f875ca1b03fa (diff) | |
download | gdb-81e80ddaa918d80abefd529f8c1e8b2a01c240db.zip gdb-81e80ddaa918d80abefd529f8c1e8b2a01c240db.tar.gz gdb-81e80ddaa918d80abefd529f8c1e8b2a01c240db.tar.bz2 |
* gmon_io.h: Don't include sysdep.h here.
(O_BINARY, SET_BINARY): Don't define here.
* gmon_io.c: Include "binary-io.h".
(gmon_out_read): Remove #ifdef SET_BINARY.
* Makefile.am: Run "make dep-am"
* Makefile.in: Regenerate.
Diffstat (limited to 'gprof/gmon_io.h')
-rw-r--r-- | gprof/gmon_io.h | 21 |
1 files changed, 2 insertions, 19 deletions
diff --git a/gprof/gmon_io.h b/gprof/gmon_io.h index 20e59b5..29d608d 100644 --- a/gprof/gmon_io.h +++ b/gprof/gmon_io.h @@ -1,6 +1,7 @@ /* gmon_io.h - Copyright 2000, 2001, 2002, 2004, 2007 Free Software Foundation, Inc. + Copyright 2000, 2001, 2002, 2004, 2007, 2008 + Free Software Foundation, Inc. This file is part of GNU Binutils. @@ -22,24 +23,6 @@ #ifndef gmon_io_h #define gmon_io_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 <io.h> -#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) |