diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-06-20 23:55:13 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-06-20 23:55:13 +0000 |
commit | ef99c8e680a15578956acc36ef2faf8c1e4b8748 (patch) | |
tree | 181269f1de5f04e2759680dae7bedd6853e7a7e0 /gcc/gcov-io.h | |
parent | e4e9e6668e3ae7c98b7191104da2fe0f19c63095 (diff) | |
download | ppe42-gcc-ef99c8e680a15578956acc36ef2faf8c1e4b8748.tar.gz ppe42-gcc-ef99c8e680a15578956acc36ef2faf8c1e4b8748.zip |
* flow.c (allocate_for_life_analysis, init_regset_vector):
Remove declaration.
* function.h (get_first_block_beg): New declaration.
* gbl-ctors.h (__do_global_dtors): Add prototype.
* gcov-io.h (__fetch_long): New declaration.
(__store_long): Likewise.
(__read_long): Likewise.
(__write_long): Likewise.
* gcov.c (print_usage): New declaration.
* Makefile.in (c-iterate.o): Depend on insn-codes.h too.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@20631 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gcov-io.h')
-rw-r--r-- | gcc/gcov-io.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/gcov-io.h b/gcc/gcov-io.h index e49511d29bb..c2949a311af 100644 --- a/gcc/gcov-io.h +++ b/gcc/gcov-io.h @@ -24,6 +24,11 @@ Boston, MA 02111-1307, USA. */ #include <stdio.h> #include <sys/types.h> +static int __fetch_long PROTO ((long *, char *, int)); +static int __store_long PROTO ((long, char *, size_t)); +static int __read_long PROTO ((long *, FILE *, size_t)); +static int __write_long PROTO ((long, FILE *, size_t)); + /* These routines only work for signed values. */ /* Store a portable representation of VALUE in DEST using BYTES*8-1 bits. |