diff options
Diffstat (limited to 'gcc/gcov-io.cc')
-rw-r--r-- | gcc/gcov-io.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/gcov-io.cc b/gcc/gcov-io.cc index 017a6e3..fee3130 100644 --- a/gcc/gcov-io.cc +++ b/gcc/gcov-io.cc @@ -294,17 +294,15 @@ gcov_write_filename (const char *filename) gcov_write_string (filename); } -#endif /* Move to a given position in a gcov file. */ -GCOV_LINKAGE void +static void gcov_seek (gcov_position_t base) { fseek (gcov_var.file, base, SEEK_SET); } -#if !IN_LIBGCOV /* Write a tag TAG and reserve space for the record length. Return a value to be used for gcov_write_length. */ |