diff options
author | Andreas Jaeger <aj@gcc.gnu.org> | 2003-06-30 21:45:17 +0200 |
---|---|---|
committer | Andreas Jaeger <aj@gcc.gnu.org> | 2003-06-30 21:45:17 +0200 |
commit | 82a30d6f0fc7a660cf360fd7d6ee4512e21d4b29 (patch) | |
tree | 492edd5b8ca7043427394972383662f8ef223943 /gcc/gcov-io.h | |
parent | 37fa72e9d359a0c00c3b62e9aabd74276daa6602 (diff) | |
download | gcc-82a30d6f0fc7a660cf360fd7d6ee4512e21d4b29.zip gcc-82a30d6f0fc7a660cf360fd7d6ee4512e21d4b29.tar.gz gcc-82a30d6f0fc7a660cf360fd7d6ee4512e21d4b29.tar.bz2 |
gcov-io.c: Convert prototypes to ISO C90.
* gcov-io.c: Convert prototypes to ISO C90.
* gcov-io.h: Likewise.
From-SVN: r68735
Diffstat (limited to 'gcc/gcov-io.h')
-rw-r--r-- | gcc/gcov-io.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/gcov-io.h b/gcc/gcov-io.h index e7d2f8b..04766b3 100644 --- a/gcc/gcov-io.h +++ b/gcc/gcov-io.h @@ -500,7 +500,7 @@ gcov_position (void) /* Return nonzero if we read to end of file. */ static inline int -gcov_is_eof () +gcov_is_eof (void) { return !gcov_var.overread; } @@ -508,7 +508,7 @@ gcov_is_eof () /* Return nonzero if the error flag is set. */ static inline int -gcov_is_error () +gcov_is_error (void) { return gcov_var.file ? gcov_var.error : 1; } |