diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2000-01-17 15:37:04 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2000-01-17 15:37:04 +0000 |
commit | 1353681247458baa6a3df8375b786df8ace7664c (patch) | |
tree | 2c932fb63a8aa3c1db1b432e880202b0e3f267b3 /gcc/prefix.c | |
parent | 3fe41456ed2b825719c3f4c5e4bd90c71f1fc677 (diff) | |
download | gcc-1353681247458baa6a3df8375b786df8ace7664c.tar.gz |
machmode.h: PROTO -> PARAMS.
* machmode.h: PROTO -> PARAMS.
* mbchar.h: Likewise.
* mips-tdump.c: Likewise.
* mips-tfile.c: Likewise.
* optabs.c: Likewise.
* output.h: Likewise.
* prefix.c: Likewise.
* profile.c: Likewise.
* protoize.c: Likewise.
* real.h: Likewise.
* recog.c: Likewise.
* recog.h: Likewise.
* regclass.c: Likewise.
* regmove.c: Likewise.
* regs.h: Likewise.
From-SVN: r31459
Diffstat (limited to 'gcc/prefix.c')
-rw-r--r-- | gcc/prefix.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/prefix.c b/gcc/prefix.c index 9d7bd612b0a..febec06bfee 100644 --- a/gcc/prefix.c +++ b/gcc/prefix.c @@ -73,12 +73,12 @@ Boston, MA 02111-1307, USA. */ static const char *std_prefix = PREFIX; -static const char *get_key_value PROTO((char *)); -static const char *translate_name PROTO((const char *)); -static char *save_string PROTO((const char *, int)); +static const char *get_key_value PARAMS ((char *)); +static const char *translate_name PARAMS ((const char *)); +static char *save_string PARAMS ((const char *, int)); #if defined(_WIN32) && defined(ENABLE_WIN32_REGISTRY) -static char *lookup_key PROTO((char *)); +static char *lookup_key PARAMS ((char *)); static HKEY reg_key = (HKEY) INVALID_HANDLE_VALUE; #endif @@ -112,7 +112,7 @@ get_key_value (key) This function is based on the one in libiberty. */ char * -concat VPROTO((const char *first, ...)) +concat VPARAMS ((const char *first, ...)) { register int length; register char *newstr; |