diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2000-01-14 17:14:43 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2000-01-14 17:14:43 +0000 |
commit | 711d877c9e4f9b3250bc50e54c672b40840d574a (patch) | |
tree | c581c8d237ef2fffdfeee6182fd81e25ea6ed527 /gcc/gcov-io.h | |
parent | 318881c06efdf1bc4039f1bba7eab820d69735a2 (diff) | |
download | gcc-711d877c9e4f9b3250bc50e54c672b40840d574a.zip gcc-711d877c9e4f9b3250bc50e54c672b40840d574a.tar.gz gcc-711d877c9e4f9b3250bc50e54c672b40840d574a.tar.bz2 |
eh-common.h: PROTO -> PARAMS.
* eh-common.h: PROTO -> PARAMS.
* emit-rtl.c: Likewise.
* errors.c: Likewise.
* errors.h: Likewise.
* except.c: Likewise.
* except.h: Likewise.
* explow.c: Likewise.
* expmed.c: Likewise.
* expr.c: Likewise.
* expr.h: Likewise.
* final.c: Likewise.
* fix-header.c: Likewise.
* flow.c: Likewise.
* fold-const.c: Likewise.
* function.c: Likewise.
* function.h: Likewise.
* gcc.c: Likewise.
* gcov-io.h: Likewise.
* gcov.c: Likewise.
* gcse.c: Likewise.
From-SVN: r31419
Diffstat (limited to 'gcc/gcov-io.h')
-rw-r--r-- | gcc/gcov-io.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/gcov-io.h b/gcc/gcov-io.h index d2605fe..cac4958 100644 --- a/gcc/gcov-io.h +++ b/gcc/gcov-io.h @@ -1,5 +1,5 @@ /* Machine-independent I/O routines for gcov. - Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc. + Copyright (C) 1996, 1997, 1998, 2000 Free Software Foundation, Inc. Contributed by Bob Manson <manson@cygnus.com>. This file is part of GNU CC. @@ -24,10 +24,10 @@ Boston, MA 02111-1307, USA. */ #include <stdio.h> #include <sys/types.h> -static int __fetch_long PROTO ((long *, char *, size_t)); -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)); +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)); /* These routines only work for signed values. */ |