diff options
author | YamaArashi <shadow962@live.com> | 2016-02-16 01:03:54 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-02-16 01:03:54 -0800 |
commit | ecae31d652106c1f3b7429570de013c3bbf33e7a (patch) | |
tree | 6981957216b10aad71c792714a25c5750611754e /gcc/prefix.c | |
parent | 9382e1a90b218b4b93bf53c01ef163925cf224dc (diff) |
get rid of PROTO macros
Diffstat (limited to 'gcc/prefix.c')
-rwxr-xr-x | gcc/prefix.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/prefix.c b/gcc/prefix.c index 6a98437..68875da 100755 --- a/gcc/prefix.c +++ b/gcc/prefix.c @@ -72,12 +72,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 (char *); +static const char *translate_name (const char *); +static char *save_string (const char *, int); #ifdef _WIN32 -static char *lookup_key PROTO((char *)); +static char *lookup_key (char *); static HKEY reg_key = (HKEY) INVALID_HANDLE_VALUE; #endif @@ -111,7 +111,7 @@ get_key_value (key) This function is based on the one in libiberty. */ char * -concat VPROTO((const char *first, ...)) +concat (const char *first, ...) { register int length; register char *newstr; |