diff options
author | Richard Kenner <kenner@vlsi1.ultra.nyu.edu> | 2000-02-27 14:24:13 +0000 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 2000-02-27 09:24:13 -0500 |
commit | 6e38f244c445e8a48a783598b151dbea71f897b3 (patch) | |
tree | 05e8e189e4de5c9a881f1f42d09eed573ddf0ead /gcc/gcov-io.h | |
parent | 4e37e57d144fc4d905ae6b235fb637ce259e2c38 (diff) | |
download | gcc-6e38f244c445e8a48a783598b151dbea71f897b3.zip gcc-6e38f244c445e8a48a783598b151dbea71f897b3.tar.gz gcc-6e38f244c445e8a48a783598b151dbea71f897b3.tar.bz2 |
gcov-io.h (__fetch_long, [...]): Mark as possibly unused.
* gcov-io.h (__fetch_long, __store_long, __read_long, __write_long):
Mark as possibly unused.
From-SVN: r32220
Diffstat (limited to 'gcc/gcov-io.h')
-rw-r--r-- | gcc/gcov-io.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/gcov-io.h b/gcc/gcov-io.h index cac4958..0cb93f5 100644 --- a/gcc/gcov-io.h +++ b/gcc/gcov-io.h @@ -24,10 +24,10 @@ Boston, MA 02111-1307, USA. */ #include <stdio.h> #include <sys/types.h> -static int __fetch_long PARAMS ((long *, char *, size_t)); -static int __store_long PARAMS ((long, char *, size_t)); -static int __read_long PARAMS ((long *, FILE *, size_t)); -static int __write_long PARAMS ((long, FILE *, size_t)); +static int __fetch_long PARAMS ((long *, char *, size_t)) ATTRIBUTE_UNUSED; +static int __store_long PARAMS ((long, char *, size_t)) ATTRIBUTE_UNUSED; +static int __read_long PARAMS ((long *, FILE *, size_t)) ATTRIBUTE_UNUSED; +static int __write_long PARAMS ((long, FILE *, size_t)) ATTRIBUTE_UNUSED; /* These routines only work for signed values. */ |