aboutsummaryrefslogtreecommitdiff
path: root/gcc/gcov-io.h
diff options
context:
space:
mode:
authordannysmith <dannysmith@138bc75d-0d04-0410-961f-82ee72b054a4>2004-03-22 02:33:30 +0000
committerdannysmith <dannysmith@138bc75d-0d04-0410-961f-82ee72b054a4>2004-03-22 02:33:30 +0000
commitcf47969f7ca58130cbee25dbfc9864135cf81349 (patch)
treec3c17c09c588c5103c149166d419c760a73cc81f /gcc/gcov-io.h
parent68722d1858536731aa1f83e468b81ff7e808c52c (diff)
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.h5
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)
{