diff options
author | dannysmith <dannysmith@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-03-22 02:33:30 +0000 |
---|---|---|
committer | dannysmith <dannysmith@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-03-22 02:33:30 +0000 |
commit | cf47969f7ca58130cbee25dbfc9864135cf81349 (patch) | |
tree | c3c17c09c588c5103c149166d419c760a73cc81f /gcc/gcov-io.h | |
parent | 68722d1858536731aa1f83e468b81ff7e808c52c (diff) | |
download | gcc-cf47969f7ca58130cbee25dbfc9864135cf81349.tar.gz |
PR target/14291
* gcov-io.h (gcov_truncate): Define ftruncate as _chsize for
__MINGW32__.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79809 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gcov-io.h')
-rw-r--r-- | gcc/gcov-io.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/gcov-io.h b/gcc/gcov-io.h index 0254632eb8a..e83c5163c90 100644 --- a/gcc/gcov-io.h +++ b/gcc/gcov-io.h @@ -1,6 +1,6 @@ /* File format for coverage information Copyright (C) 1996, 1997, 1998, 2000, 2002, - 2003 Free Software Foundation, Inc. + 2003, 2004 Free Software Foundation, Inc. Contributed by Bob Manson <manson@cygnus.com>. Completely remangled by Nathan Sidwell <nathan@codesourcery.com>. @@ -584,6 +584,9 @@ gcov_rewrite (void) fseek (gcov_var.file, 0L, SEEK_SET); } +#ifdef __MINGW32__ +#define ftruncate _chsize +#endif static inline void gcov_truncate (void) { |