OSDN Git Service

* gcc.dg/altivec-21.c: Use dg-error only for ilp32.
[pf3gnuchains/gcc-fork.git] / gcc / protoize.c
index 98a0940..b7c2ec6 100644 (file)
@@ -1,6 +1,6 @@
 /* Protoize program - Original version by Ron Guilmette (rfg@segfault.us.com).
    Copyright (C) 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
-   1999, 2000, 2001 Free Software Foundation, Inc.
+   1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
 
 This file is part of GCC.
 
@@ -21,7 +21,10 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 
 #include "config.h"
 #include "system.h"
+#include "coretypes.h"
+#include "tm.h"
 #include "intl.h"
+#include "cppdefault.h"
 
 #include <setjmp.h>
 #include <signal.h>
@@ -31,7 +34,6 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 #ifdef HAVE_UNISTD_H
 #include <unistd.h>
 #endif
-#undef abort
 #include "version.h"
 
 /* Include getopt.h for the sake of getopt_long.  */
@@ -45,11 +47,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 #endif
 
 /* Macro to see if the paths match.  */
-#ifdef HAVE_DOS_BASED_FILE_SYSTEM
-#define IS_SAME_PATH(a,b) (strcasecmp (a, b) == 0)
-#else
-#define IS_SAME_PATH(a,b) (strcmp (a, b) == 0)
-#endif
+#define IS_SAME_PATH(a,b) (FILENAME_CMP (a, b) == 0)
 
 /* Suffix for aux-info files.  */
 #ifdef __MSDOS__
@@ -72,45 +70,42 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 #define CPLUS_FILE_SUFFIX "C"
 #endif
 
-static void usage PARAMS ((void)) ATTRIBUTE_NORETURN;
-static void aux_info_corrupted PARAMS ((void)) ATTRIBUTE_NORETURN;
-static void declare_source_confusing PARAMS ((const char *)) ATTRIBUTE_NORETURN;
-static const char *shortpath PARAMS ((const char *, const char *));
-extern void fancy_abort PARAMS ((void)) ATTRIBUTE_NORETURN;
-static void notice PARAMS ((const char *, ...)) ATTRIBUTE_PRINTF_1;
-static char *savestring PARAMS ((const char *, unsigned int));
-static char *dupnstr PARAMS ((const char *, size_t));
-static const char *substr PARAMS ((const char *, const char * const));
-static int safe_read PARAMS ((int, PTR, int));
-static void safe_write PARAMS ((int, PTR, int, const char *));
-static void save_pointers PARAMS ((void));
-static void restore_pointers PARAMS ((void));
-static int is_id_char PARAMS ((int));
-static int in_system_include_dir PARAMS ((const char *));
-static int directory_specified_p PARAMS ((const char *));
-static int file_excluded_p PARAMS ((const char *));
-static char *unexpand_if_needed PARAMS ((const char *));
-static char *abspath PARAMS ((const char *, const char *));
-static int is_abspath PARAMS ((const char *));
-static void check_aux_info PARAMS ((int));
-static const char *find_corresponding_lparen PARAMS ((const char *));
-static int referenced_file_is_newer PARAMS ((const char *, time_t));
-static void save_def_or_dec PARAMS ((const char *, int));
-static void munge_compile_params PARAMS ((const char *));
-static int gen_aux_info_file PARAMS ((const char *));
-static void process_aux_info_file PARAMS ((const char *, int, int));
-static int identify_lineno PARAMS ((const char *));
-static void check_source PARAMS ((int, const char *));
-static const char *seek_to_line PARAMS ((int));
-static const char *forward_to_next_token_char PARAMS ((const char *));
-static void output_bytes PARAMS ((const char *, size_t));
-static void output_string PARAMS ((const char *));
-static void output_up_to PARAMS ((const char *));
-static int other_variable_style_function PARAMS ((const char *));
-static const char *find_rightmost_formals_list PARAMS ((const char *));
-static void do_cleaning PARAMS ((char *, const char *));
-static const char *careful_find_l_paren PARAMS ((const char *));
-static void do_processing PARAMS ((void));
+static void usage (void) ATTRIBUTE_NORETURN;
+static void aux_info_corrupted (void) ATTRIBUTE_NORETURN;
+static void declare_source_confusing (const char *) ATTRIBUTE_NORETURN;
+static const char *shortpath (const char *, const char *);
+static void notice (const char *, ...) ATTRIBUTE_PRINTF_1;
+static char *savestring (const char *, unsigned int);
+static char *dupnstr (const char *, size_t);
+static int safe_read (int, void *, int);
+static void safe_write (int, void *, int, const char *);
+static void save_pointers (void);
+static void restore_pointers (void);
+static int is_id_char (int);
+static int in_system_include_dir (const char *);
+static int directory_specified_p (const char *);
+static int file_excluded_p (const char *);
+static char *unexpand_if_needed (const char *);
+static char *abspath (const char *, const char *);
+static void check_aux_info (int);
+static const char *find_corresponding_lparen (const char *);
+static int referenced_file_is_newer (const char *, time_t);
+static void save_def_or_dec (const char *, int);
+static void munge_compile_params (const char *);
+static int gen_aux_info_file (const char *);
+static void process_aux_info_file (const char *, int, int);
+static int identify_lineno (const char *);
+static void check_source (int, const char *);
+static const char *seek_to_line (int);
+static const char *forward_to_next_token_char (const char *);
+static void output_bytes (const char *, size_t);
+static void output_string (const char *);
+static void output_up_to (const char *);
+static int other_variable_style_function (const char *);
+static const char *find_rightmost_formals_list (const char *);
+static void do_cleaning (char *, const char *);
+static const char *careful_find_l_paren (const char *);
+static void do_processing (void);
 
 /* Look for these where the `const' qualifier is intentionally cast aside.  */
 #define NONCONST
@@ -127,10 +122,6 @@ static const char * const standard_exec_prefix = STANDARD_EXEC_PREFIX;
 static const char * const target_machine = DEFAULT_TARGET_MACHINE;
 static const char * const target_version = DEFAULT_TARGET_VERSION;
 
-#ifndef GET_ENV_PATH_LIST
-#define GET_ENV_PATH_LIST(VAR,NAME)    do { (VAR) = getenv (NAME); } while (0)
-#endif
-
 #endif /* !defined (UNPROTOIZE) */
 
 /* Suffix of aux_info files.  */
@@ -141,12 +132,12 @@ static const char * const aux_info_suffix = AUX_INFO_SUFFIX;
 
 static const char * const save_suffix = SAVE_SUFFIX;
 
+#ifndef UNPROTOIZE
+
 /* String to attach to C filenames renamed to C++.  */
 
 static const char * const cplus_suffix = CPLUS_FILE_SUFFIX;
 
-#ifndef UNPROTOIZE
-
 /* File name of the file which contains descriptions of standard system
    routines.  Note that we never actually do anything with this file per se,
    but we do read in its corresponding aux_info file.  */
@@ -167,8 +158,8 @@ static char * syscalls_absolute_filename;
 /* Type of the structure that holds information about macro unexpansions.  */
 
 struct unexpansion_struct {
-  const char *expanded;
-  const char *contracted;
+  const char *const expanded;
+  const char *const contracted;
 };
 typedef struct unexpansion_struct unexpansion;
 
@@ -194,54 +185,6 @@ static const unexpansion unexpansions[] = {
 
 static const int hash_mask = (HASH_TABLE_SIZE - 1);
 
-/* Make a table of default system include directories
-   just as it is done in cpp.  */
-
-#ifndef STANDARD_INCLUDE_DIR
-#define STANDARD_INCLUDE_DIR "/usr/include"
-#endif
-
-#ifndef LOCAL_INCLUDE_DIR
-#define LOCAL_INCLUDE_DIR "/usr/local/include"
-#endif
-
-struct default_include { const char *fname; 
-                        const char *component;
-                        int x1, x2; } include_defaults[]
-#ifdef INCLUDE_DEFAULTS
-  = INCLUDE_DEFAULTS;
-#else
-  = {
-    /* Pick up GNU C++ specific include files.  */
-    { GPLUSPLUS_INCLUDE_DIR, "G++", 1, 1 },
-#ifdef CROSS_COMPILE
-    /* This is the dir for fixincludes.  Put it just before
-       the files that we fix.  */
-    { GCC_INCLUDE_DIR, "GCC", 0, 0 },
-    /* For cross-compilation, this dir name is generated
-       automatically in Makefile.in.  */
-    { CROSS_INCLUDE_DIR, 0, 0, 0 },
-    /* This is another place that the target system's headers might be.  */
-    { TOOL_INCLUDE_DIR, "BINUTILS", 0, 0 },
-#else /* not CROSS_COMPILE */
-    /* This should be /use/local/include and should come before
-       the fixincludes-fixed header files.  */
-    { LOCAL_INCLUDE_DIR, 0, 0, 1 },
-    /* This is here ahead of GCC_INCLUDE_DIR because assert.h goes here.
-       Likewise, behind LOCAL_INCLUDE_DIR, where glibc puts its assert.h.  */
-    { TOOL_INCLUDE_DIR, "BINUTILS", 0, 0 },
-    /* This is the dir for fixincludes.  Put it just before
-       the files that we fix.  */
-    { GCC_INCLUDE_DIR, "GCC", 0, 0 },
-    /* Some systems have an extra dir of include files.  */
-#ifdef SYSTEM_INCLUDE_DIR
-    { SYSTEM_INCLUDE_DIR, 0, 0, 0 },
-#endif
-    { STANDARD_INCLUDE_DIR, 0, 0, 0},
-#endif /* not CROSS_COMPILE */
-    { 0, 0, 0, 0}
-    };
-#endif /* no INCLUDE_DEFAULTS */
 
 /* Datatype for lists of directories or filenames.  */
 struct string_list
@@ -250,8 +193,8 @@ struct string_list
   struct string_list *next;
 };
 
-static struct string_list *string_list_cons PARAMS ((const char *,
-                                                    struct string_list *));
+static struct string_list *string_list_cons (const char *,
+                                            struct string_list *);
 
 /* List of directories in which files should be converted.  */
 
@@ -276,9 +219,7 @@ struct string_list *exclude_list;
 static const char * const other_var_style = "stdarg";
 #else /* !defined (UNPROTOIZE) */
 static const char * const other_var_style = "varargs";
-/* Note that this is a string containing the expansion of va_alist.
-   But in `main' we discard all but the first token.  */
-static const char *varargs_style_indicator = STRINGX (va_alist);
+static const char *varargs_style_indicator = "va_alist";
 #endif /* !defined (UNPROTOIZE) */
 
 /* The following two types are used to create hash tables.  In this program,
@@ -298,29 +239,29 @@ typedef struct file_info_struct file_info;
 typedef struct f_list_chain_item_struct f_list_chain_item;
 
 #ifndef UNPROTOIZE
-static int is_syscalls_file PARAMS ((const file_info *));
-static void rename_c_file PARAMS ((const hash_table_entry *));
-static const def_dec_info *find_extern_def PARAMS ((const def_dec_info *,
-                                                   const def_dec_info *));
-static const def_dec_info *find_static_definition PARAMS ((const def_dec_info *));
-static void connect_defs_and_decs PARAMS ((const hash_table_entry *));
-static void add_local_decl PARAMS ((const def_dec_info *, const char *));
-static void add_global_decls PARAMS ((const file_info *, const char *));
+static int is_syscalls_file (const file_info *);
+static void rename_c_file (const hash_table_entry *);
+static const def_dec_info *find_extern_def (const def_dec_info *,
+                                           const def_dec_info *);
+static const def_dec_info *find_static_definition (const def_dec_info *);
+static void connect_defs_and_decs (const hash_table_entry *);
+static void add_local_decl (const def_dec_info *, const char *);
+static void add_global_decls (const file_info *, const char *);
 #endif /* ! UNPROTOIZE */
-static int needs_to_be_converted PARAMS ((const file_info *));
-static void visit_each_hash_node PARAMS ((const hash_table_entry *,
-                                         void (*)(const hash_table_entry *)));
-static hash_table_entry *add_symbol PARAMS ((hash_table_entry *, const char *));
-static hash_table_entry *lookup PARAMS ((hash_table_entry *, const char *));
-static void free_def_dec PARAMS ((def_dec_info *));
-static file_info *find_file PARAMS ((const char *, int));
-static void reverse_def_dec_list PARAMS ((const hash_table_entry *));
-static void edit_fn_declaration PARAMS ((const def_dec_info *, const char *));
-static int edit_formals_lists PARAMS ((const char *, unsigned int,
-                                      const def_dec_info *));
-static void edit_fn_definition PARAMS ((const def_dec_info *, const char *));
-static void scan_for_missed_items PARAMS ((const file_info *));
-static void edit_file PARAMS ((const hash_table_entry *));
+static int needs_to_be_converted (const file_info *);
+static void visit_each_hash_node (const hash_table_entry *,
+                                 void (*)(const hash_table_entry *));
+static hash_table_entry *add_symbol (hash_table_entry *, const char *);
+static hash_table_entry *lookup (hash_table_entry *, const char *);
+static void free_def_dec (def_dec_info *);
+static file_info *find_file (const char *, int);
+static void reverse_def_dec_list (const hash_table_entry *);
+static void edit_fn_declaration (const def_dec_info *, const char *);
+static int edit_formals_lists (const char *, unsigned int,
+                              const def_dec_info *);
+static void edit_fn_definition (const def_dec_info *, const char *);
+static void scan_for_missed_items (const file_info *);
+static void edit_file (const hash_table_entry *);
 
 /* In the struct below, note that the "_info" field has two different uses
    depending on the type of hash table we are in (i.e. either the filenames
@@ -414,12 +355,14 @@ struct def_dec_info_struct {
 
 static const char *pname;
 
-/* Error counter.  Will be non-zero if we should give up at the next convenient
+/* Error counter.  Will be nonzero if we should give up at the next convenient
    stopping point.  */
 
 static int errors = 0;
 
 /* Option flags.  */
+/* ??? The variables are not marked static because some of them have
+   the same names as gcc variables declared in options.h.  */
 /* ??? These comments should say what the flag mean as well as the options
    that set them.  */
 
@@ -427,20 +370,20 @@ static int errors = 0;
    something other than gcc.  */
 static const char *compiler_file_name = "gcc";
 
-static int version_flag = 0;           /* Print our version number.  */
-static int quiet_flag = 0;             /* Don't print messages normally.  */
-static int nochange_flag = 0;          /* Don't convert, just say what files
-                                          we would have converted.  */
-static int nosave_flag = 0;            /* Don't save the old version.  */
-static int keep_flag = 0;              /* Don't delete the .X files.  */
+int version_flag = 0;          /* Print our version number.  */
+int quiet_flag = 0;            /* Don't print messages normally.  */
+int nochange_flag = 0;         /* Don't convert, just say what files
+                                  we would have converted.  */
+int nosave_flag = 0;           /* Don't save the old version.  */
+int keep_flag = 0;             /* Don't delete the .X files.  */
 static const char ** compile_params = 0;       /* Option string for gcc.  */
 #ifdef UNPROTOIZE
 static const char *indent_string = "     ";    /* Indentation for newly
                                                   inserted parm decls.  */
 #else /* !defined (UNPROTOIZE) */
-static int local_flag = 0;             /* Insert new local decls (when?).  */
-static int global_flag = 0;            /* set by -g option */
-static int cplusplus_flag = 0;         /* Rename converted files to *.C.  */
+int local_flag = 0;            /* Insert new local decls (when?).  */
+int global_flag = 0;           /* set by -g option */
+int cplusplus_flag = 0;                /* Rename converted files to *.C.  */
 static const char *nondefault_syscalls_dir = 0; /* Dir to look for
                                                   SYSCALLS.c.X in.  */
 #endif /* !defined (UNPROTOIZE) */
@@ -562,85 +505,45 @@ static char * saved_repl_write_ptr;
 \f
 /* Translate and output an error message.  */
 static void
-notice VPARAMS ((const char *msgid, ...))
+notice (const char *msgid, ...)
 {
-  VA_OPEN (ap, msgid);
-  VA_FIXEDARG (ap, const char *, msgid);
-
+  va_list ap;
+  
+  va_start (ap, msgid);
   vfprintf (stderr, _(msgid), ap);
-  VA_CLOSE (ap);
+  va_end (ap);
 }
 
 \f
 /* Make a copy of a string INPUT with size SIZE.  */
 
 static char *
-savestring (input, size)
-     const char *input;
-     unsigned int size;
+savestring (const char *input, unsigned int size)
 {
-  char *output = (char *) xmalloc (size + 1);
+  char *output = xmalloc (size + 1);
   strcpy (output, input);
   return output;
 }
 
-/* More 'friendly' abort that prints the line and file.
-   config.h can #define abort fancy_abort if you like that sort of thing.  */
-
-void
-fancy_abort ()
-{
-  notice ("%s: internal abort\n", pname);
-  exit (FATAL_EXIT_CODE);
-}
 \f
 /* Make a duplicate of the first N bytes of a given string in a newly
    allocated area.  */
 
 static char *
-dupnstr (s, n)
-     const char *s;
-     size_t n;
+dupnstr (const char *s, size_t n)
 {
-  char *ret_val = (char *) xmalloc (n + 1);
+  char *ret_val = xmalloc (n + 1);
 
   strncpy (ret_val, s, n);
   ret_val[n] = '\0';
   return ret_val;
 }
-
-/* Return a pointer to the first occurrence of s2 within s1 or NULL if s2
-   does not occur within s1.  Assume neither s1 nor s2 are null pointers.  */
-
-static const char *
-substr (s1, s2)
-     const char *s1;
-     const char *const s2;
-{
-  for (; *s1 ; s1++)
-    {
-      const char *p1;
-      const char *p2;
-      int c;
-
-      for (p1 = s1, p2 = s2; (c = *p2); p1++, p2++)
-        if (*p1 != c)
-          goto outer;
-      return s1;
-outer:
-      ;
-    }
-  return 0;
-}
 \f
 /* Read LEN bytes at PTR from descriptor DESC, for file FILENAME,
    retrying if necessary.  Return the actual number of bytes read.  */
 
 static int
-safe_read (desc, ptr, len)
-     int desc;
-     PTR ptr;
-     int len;
+safe_read (int desc, void *ptr, int len)
 {
   int left = len;
   while (left > 0) {
@@ -655,7 +558,7 @@ safe_read (desc, ptr, len)
       }
     if (nchars == 0)
       break;
-    /* Arithmetic on void pointers is a gcc extention.  */
+    /* Arithmetic on void pointers is a gcc extension.  */
     ptr = (char *) ptr + nchars;
     left -= nchars;
   }
@@ -666,11 +569,7 @@ safe_read (desc, ptr, len)
    retrying if necessary, and treating any real error as fatal.  */
 
 static void
-safe_write (desc, ptr, len, out_fname)
-     int desc;
-     PTR ptr;
-     int len;
-     const char *out_fname;
+safe_write (int desc, void *ptr, int len, const char *out_fname)
 {
   while (len > 0) {
     int written = write (desc, ptr, len);
@@ -681,11 +580,11 @@ safe_write (desc, ptr, len, out_fname)
        if (errno_val == EINTR)
          continue;
 #endif
-       notice ("%s: error writing file `%s': %s\n",
+       notice ("%s: error writing file '%s': %s\n",
                pname, shortpath (NULL, out_fname), xstrerror (errno_val));
        return;
       }
-    /* Arithmetic on void pointers is a gcc extention.  */
+    /* Arithmetic on void pointers is a gcc extension.  */
     ptr = (char *) ptr + written;
     len -= written;
   }
@@ -694,7 +593,7 @@ safe_write (desc, ptr, len, out_fname)
 /* Get setup to recover in case the edit we are about to do goes awry.  */
 
 static void
-save_pointers ()
+save_pointers (void)
 {
   saved_clean_read_ptr = clean_read_ptr;
   saved_repl_write_ptr = repl_write_ptr;
@@ -704,7 +603,7 @@ save_pointers ()
    too confusing in the source code we are trying to edit.  */
 
 static void
-restore_pointers ()
+restore_pointers (void)
 {
   clean_read_ptr = saved_clean_read_ptr;
   repl_write_ptr = saved_repl_write_ptr;
@@ -713,17 +612,16 @@ restore_pointers ()
 /* Return true if the given character is a valid identifier character.  */
 
 static int
-is_id_char (ch)
-     int ch;
+is_id_char (int ch)
 {
-  return (ISALNUM (ch) || (ch == '_') || (ch == '$'));
+  return (ISIDNUM (ch) || (ch == '$'));
 }
 
 /* Give a message indicating the proper way to invoke this program and then
-   exit with non-zero status.  */
+   exit with nonzero status.  */
 
 static void
-usage ()
+usage (void)
 {
 #ifdef UNPROTOIZE
   notice ("%s: usage '%s [ -VqfnkN ] [ -i <istring> ] [ filename ... ]'\n",
@@ -740,15 +638,13 @@ usage ()
    include directories.  */
 
 static int
-in_system_include_dir (path)
-     const char *path;
+in_system_include_dir (const char *path)
 {
-  struct default_include *p;
+  const struct default_include *p;
 
-  if (! is_abspath (path))
-    abort ();          /* Must be an absolutized filename.  */
+  gcc_assert (IS_ABSOLUTE_PATH (path));
 
-  for (p = include_defaults; p->fname; p++)
+  for (p = cpp_include_defaults; p->fname; p++)
     if (!strncmp (path, p->fname, strlen (p->fname))
        && IS_DIR_SEPARATOR (path[strlen (p->fname)]))
       return 1;
@@ -763,7 +659,7 @@ in_system_include_dir (path)
 static int
 file_could_be_converted (const char *path)
 {
-  char *const dir_name = (char *) alloca (strlen (path) + 1);
+  char *const dir_name = alloca (strlen (path) + 1);
 
   if (access (path, R_OK))
     return 0;
@@ -777,16 +673,14 @@ file_could_be_converted (const char *path)
     {
       char *slash;
 
-      slash = strrchr (dir_last_slash ? dir_last_slash : dir_name, 
-                       DIR_SEPARATOR_2);
+      slash = strrchr (dir_last_slash ? dir_last_slash : dir_name,
+                      DIR_SEPARATOR_2);
       if (slash)
        dir_last_slash = slash;
     }
 #endif
-    if (dir_last_slash)
-      *dir_last_slash = '\0';
-    else
-      abort ();  /* Should have been an absolutized filename.  */
+    gcc_assert (dir_last_slash);
+    *dir_last_slash = '\0';
   }
 
   if (access (path, W_OK))
@@ -821,22 +715,20 @@ file_normally_convertible (const char *path)
     {
       char *slash;
 
-      slash = strrchr (dir_last_slash ? dir_last_slash : dir_name, 
-                       DIR_SEPARATOR_2);
+      slash = strrchr (dir_last_slash ? dir_last_slash : dir_name,
+                      DIR_SEPARATOR_2);
       if (slash)
        dir_last_slash = slash;
     }
 #endif
-    if (dir_last_slash)
-      *dir_last_slash = '\0';
-    else
-      abort ();  /* Should have been an absolutized filename.  */
+    gcc_assert (dir_last_slash);
+    *dir_last_slash = '\0';
   }
 
   if (access (path, R_OK))
     {
       if (!quiet_flag)
-        notice ("%s: warning: no read access for file `%s'\n",
+       notice ("%s: warning: no read access for file '%s'\n",
                pname, shortpath (NULL, path));
       return 0;
     }
@@ -844,7 +736,7 @@ file_normally_convertible (const char *path)
   if (access (path, W_OK))
     {
       if (!quiet_flag)
-        notice ("%s: warning: no write access for file `%s'\n",
+       notice ("%s: warning: no write access for file '%s'\n",
                pname, shortpath (NULL, path));
       return 0;
     }
@@ -852,7 +744,7 @@ file_normally_convertible (const char *path)
   if (access (dir_name, W_OK))
     {
       if (!quiet_flag)
-        notice ("%s: warning: no write access for dir containing `%s'\n",
+       notice ("%s: warning: no write access for dir containing '%s'\n",
                pname, shortpath (NULL, path));
       return 0;
     }
@@ -867,8 +759,7 @@ file_normally_convertible (const char *path)
    file.  Return false otherwise.  */
 
 static int
-is_syscalls_file (fi_p)
-     const file_info *fi_p;
+is_syscalls_file (const file_info *fi_p)
 {
   char const *f = fi_p->hash_entry->symbol;
   size_t fl = strlen (f), sysl = sizeof (syscalls_filename) - 1;
@@ -887,8 +778,7 @@ is_syscalls_file (fi_p)
    by connect_defs_and_decs.  */
 
 static int
-needs_to_be_converted (file_p)
-     const file_info *file_p;
+needs_to_be_converted (const file_info *file_p)
 {
   const def_dec_info *ddp;
 
@@ -917,8 +807,8 @@ needs_to_be_converted (file_p)
 
 #endif /* defined (UNPROTOIZE) */
       )
-          /* ... then the containing file needs converting.  */
-          return -1;
+         /* ... then the containing file needs converting.  */
+         return -1;
   return 0;
 }
 
@@ -926,8 +816,7 @@ needs_to_be_converted (file_p)
    that should be converted.  */
 
 static int
-directory_specified_p (name)
-     const char *name;
+directory_specified_p (const char *name)
 {
   struct string_list *p;
 
@@ -953,8 +842,7 @@ directory_specified_p (name)
 /* Return 1 if the file named NAME should be excluded from conversion.  */
 
 static int
-file_excluded_p (name)
-     const char *name;
+file_excluded_p (const char *name)
 {
   struct string_list *p;
   int len = strlen (name);
@@ -971,12 +859,9 @@ file_excluded_p (name)
    STRING is the new element value, and REST holds the remaining elements.  */
 
 static struct string_list *
-string_list_cons (string, rest)
-     const char *string;
-     struct string_list *rest;
+string_list_cons (const char *string, struct string_list *rest)
 {
-  struct string_list *temp
-    = (struct string_list *) xmalloc (sizeof (struct string_list));
+  struct string_list *temp = xmalloc (sizeof (struct string_list));
 
   temp->next = rest;
   temp->name = string;
@@ -993,20 +878,19 @@ string_list_cons (string, rest)
    argument.  */
 
 static void
-visit_each_hash_node (hash_tab_p, func)
-     const hash_table_entry *hash_tab_p;
-     void (*func) PARAMS ((const hash_table_entry *));
+visit_each_hash_node (const hash_table_entry *hash_tab_p,
+                     void (*func) (const hash_table_entry *))
 {
   const hash_table_entry *primary;
 
   for (primary = hash_tab_p; primary < &hash_tab_p[HASH_TABLE_SIZE]; primary++)
     if (primary->symbol)
       {
-        hash_table_entry *second;
+       hash_table_entry *second;
 
-        (*func)(primary);
-        for (second = primary->hash_next; second; second = second->hash_next)
-          (*func) (second);
+       (*func)(primary);
+       for (second = primary->hash_next; second; second = second->hash_next)
+         (*func) (second);
       }
 }
 
@@ -1016,9 +900,7 @@ visit_each_hash_node (hash_tab_p, func)
    called.  */
 
 static hash_table_entry *
-add_symbol (p, s)
-     hash_table_entry *p;
-     const char *s;
+add_symbol (hash_table_entry *p, const char *s)
 {
   p->hash_next = NULL;
   p->symbol = xstrdup (s);
@@ -1033,9 +915,7 @@ add_symbol (p, s)
    hash table entry for the given name.  */
 
 static hash_table_entry *
-lookup (hash_tab_p, search_symbol)
-     hash_table_entry *hash_tab_p;
-     const char *search_symbol;
+lookup (hash_table_entry *hash_tab_p, const char *search_symbol)
 {
   int hash_value = 0;
   const char *search_symbol_char_p = search_symbol;
@@ -1053,9 +933,9 @@ lookup (hash_tab_p, search_symbol)
     {
       p = p->hash_next;
       if (!strcmp (p->symbol, search_symbol))
-        return p;
+       return p;
     }
-  p->hash_next = (hash_table_entry *) xmalloc (sizeof (hash_table_entry));
+  p->hash_next = xmalloc (sizeof (hash_table_entry));
   p = p->hash_next;
   return add_symbol (p, search_symbol);
 }
@@ -1066,10 +946,9 @@ lookup (hash_tab_p, search_symbol)
    stuff it pointed to.  */
 
 static void
-free_def_dec (p)
-     def_dec_info *p;
+free_def_dec (def_dec_info *p)
 {
-  free ((NONCONST PTR) p->ansi_decl);
+  free ((NONCONST void *) p->ansi_decl);
 
 #ifndef UNPROTOIZE
   {
@@ -1078,8 +957,8 @@ free_def_dec (p)
 
     for (curr = p->f_list_chain; curr; curr = next)
       {
-        next = curr->chain_next;
-        free ((NONCONST PTR) curr);
+       next = curr->chain_next;
+       free ((NONCONST void *) curr);
       }
   }
 #endif /* !defined (UNPROTOIZE) */
@@ -1087,14 +966,13 @@ free_def_dec (p)
   free (p);
 }
 
-/* Unexpand as many macro symbol as we can find.
+/* Unexpand as many macro symbols as we can find.
 
    If the given line must be unexpanded, make a copy of it in the heap and
    return a pointer to the unexpanded copy.  Otherwise return NULL.  */
 
 static char *
-unexpand_if_needed (aux_info_line)
-     const char *aux_info_line;
+unexpand_if_needed (const char *aux_info_line)
 {
   static char *line_buf = 0;
   static int line_buf_size = 0;
@@ -1106,7 +984,7 @@ unexpand_if_needed (aux_info_line)
   if (line_buf == 0)
     {
       line_buf_size = 1024;
-      line_buf = (char *) xmalloc (line_buf_size);
+      line_buf = xmalloc (line_buf_size);
     }
 
   copy_p = line_buf;
@@ -1116,37 +994,37 @@ unexpand_if_needed (aux_info_line)
   for (s = aux_info_line; *s != '\n'; )
     {
       for (unexp_p = unexpansions; unexp_p->expanded; unexp_p++)
-        {
-          const char *in_p = unexp_p->expanded;
-          size_t len = strlen (in_p);
+       {
+         const char *in_p = unexp_p->expanded;
+         size_t len = strlen (in_p);
 
-          if (*s == *in_p && !strncmp (s, in_p, len) && !is_id_char (s[len]))
-            {
+         if (*s == *in_p && !strncmp (s, in_p, len) && !is_id_char (s[len]))
+           {
              int size = strlen (unexp_p->contracted);
-              got_unexpanded = 1;
+             got_unexpanded = 1;
              if (copy_p + size - line_buf >= line_buf_size)
                {
                  int offset = copy_p - line_buf;
                  line_buf_size *= 2;
                  line_buf_size += size;
-                 line_buf = (char *) xrealloc (line_buf, line_buf_size);
+                 line_buf = xrealloc (line_buf, line_buf_size);
                  copy_p = line_buf + offset;
                }
-              strcpy (copy_p, unexp_p->contracted);
-              copy_p += size;
+             strcpy (copy_p, unexp_p->contracted);
+             copy_p += size;
 
-              /* Assume the there will not be another replacement required
-                 within the text just replaced.  */
+             /* Assume that there will not be another replacement required
+                within the text just replaced.  */
 
-              s += len;
-              goto continue_outer;
-            }
-        }
+             s += len;
+             goto continue_outer;
+           }
+       }
       if (copy_p - line_buf == line_buf_size)
        {
          int offset = copy_p - line_buf;
          line_buf_size *= 2;
-         line_buf = (char *) xrealloc (line_buf, line_buf_size);
+         line_buf = xrealloc (line_buf, line_buf_size);
          copy_p = line_buf + offset;
        }
       *copy_p++ = *s++;
@@ -1156,7 +1034,7 @@ continue_outer: ;
     {
       int offset = copy_p - line_buf;
       line_buf_size *= 2;
-      line_buf = (char *) xrealloc (line_buf, line_buf_size);
+      line_buf = xrealloc (line_buf, line_buf_size);
       copy_p = line_buf + offset;
     }
   *copy_p++ = '\n';
@@ -1165,20 +1043,6 @@ continue_outer: ;
   return (got_unexpanded ? savestring (line_buf, copy_p - line_buf) : 0);
 }
 \f
-/* Return 1 if pathname is absolute.  */
-
-static int
-is_abspath (path)
-     const char *path;
-{
-  return (IS_DIR_SEPARATOR (path[0])
-#ifdef HAVE_DOS_BASED_FILE_SYSTEM
-          /* Check for disk name on MS-DOS-based systems.  */
-          || (path[0] && path[1] == ':' && IS_DIR_SEPARATOR (path[2]))
-#endif
-          );
-}
-\f
 /* Return the absolutized filename for the given relative
    filename.  Note that if that filename is already absolute, it may
    still be returned in a modified form because this routine also
@@ -1190,14 +1054,11 @@ is_abspath (path)
    NULL.  */
 
 static char *
-abspath (cwd, rel_filename)
-     const char *cwd;
-     const char *rel_filename;
+abspath (const char *cwd, const char *rel_filename)
 {
   /* Setup the current working directory as needed.  */
-  const char *cwd2 = (cwd) ? cwd : cwd_buffer;
-  char *const abs_buffer
-    = (char *) alloca (strlen (cwd2) + strlen (rel_filename) + 2);
+  const char *const cwd2 = (cwd) ? cwd : cwd_buffer;
+  char *const abs_buffer = alloca (strlen (cwd2) + strlen (rel_filename) + 2);
   char *endp = abs_buffer;
   char *outp, *inp;
 
@@ -1207,18 +1068,18 @@ abspath (cwd, rel_filename)
   {
     const char *src_p;
 
-    if (! is_abspath (rel_filename))
+    if (! IS_ABSOLUTE_PATH (rel_filename))
       {
-        src_p = cwd2;
-        while ((*endp++ = *src_p++))
-          continue;
-        *(endp-1) = DIR_SEPARATOR;                     /* overwrite null */
+       src_p = cwd2;
+       while ((*endp++ = *src_p++))
+         continue;
+       *(endp-1) = DIR_SEPARATOR;              /* overwrite null */
       }
 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
     else if (IS_DIR_SEPARATOR (rel_filename[0]))
       {
-       /* A path starting with a directory separator is considered absolute 
-          for dos based filesystems, but it's really not -- it's just the 
+       /* A path starting with a directory separator is considered absolute
+          for dos based filesystems, but it's really not -- it's just the
           convention used throughout GCC and it works. However, in this
           case, we still need to prepend the drive spec from cwd_buffer.  */
        *endp++ = cwd2[0];
@@ -1242,42 +1103,42 @@ abspath (cwd, rel_filename)
   for (;;)
     {
       if (!inp[0])
-        break;
+       break;
       else if (IS_DIR_SEPARATOR (inp[0]) && IS_DIR_SEPARATOR (outp[-1]))
-        {
-          inp++;
-          continue;
-        }
+       {
+         inp++;
+         continue;
+       }
       else if (inp[0] == '.' && IS_DIR_SEPARATOR (outp[-1]))
-        {
-          if (!inp[1])
-                  break;
-          else if (IS_DIR_SEPARATOR (inp[1]))
-            {
-                    inp += 2;
-                    continue;
-            }
-          else if ((inp[1] == '.') && (inp[2] == 0 
+       {
+         if (!inp[1])
+           break;
+         else if (IS_DIR_SEPARATOR (inp[1]))
+           {
+             inp += 2;
+             continue;
+           }
+         else if ((inp[1] == '.') && (inp[2] == 0
                                       || IS_DIR_SEPARATOR (inp[2])))
-            {
-                    inp += (IS_DIR_SEPARATOR (inp[2])) ? 3 : 2;
-                    outp -= 2;
-                    while (outp >= abs_buffer && ! IS_DIR_SEPARATOR (*outp))
-               outp--;
-                    if (outp < abs_buffer)
-                     {
-                       /* Catch cases like /.. where we try to backup to a
-                          point above the absolute root of the logical file
-                          system.  */
-
-                       notice ("%s: invalid file name: %s\n",
-                               pname, rel_filename);
-                       exit (FATAL_EXIT_CODE);
-                     }
-                    *++outp = '\0';
-                    continue;
-                 }
-        }
+           {
+             inp += (IS_DIR_SEPARATOR (inp[2])) ? 3 : 2;
+             outp -= 2;
+             while (outp >= abs_buffer && ! IS_DIR_SEPARATOR (*outp))
+               outp--;
+             if (outp < abs_buffer)
+               {
+                 /* Catch cases like /.. where we try to backup to a
+                    point above the absolute root of the logical file
+                    system.  */
+
+                 notice ("%s: invalid file name: %s\n",
+                         pname, rel_filename);
+                 exit (FATAL_EXIT_CODE);
+               }
+             *++outp = '\0';
+             continue;
+           }
+       }
       *outp++ = *inp++;
     }
 
@@ -1309,9 +1170,7 @@ abspath (cwd, rel_filename)
    subpart of the original filename is actually a symbolic link.  */
 
 static const char *
-shortpath (cwd, filename)
-     const char *cwd;
-     const char *filename;
+shortpath (const char *cwd, const char *filename)
 {
   char *rel_buffer;
   char *rel_buf_p;
@@ -1321,7 +1180,7 @@ shortpath (cwd, filename)
   size_t filename_len = strlen (filename);
 
   path_p = abspath (cwd, filename);
-  rel_buf_p = rel_buffer = (char *) xmalloc (filename_len);
+  rel_buf_p = rel_buffer = xmalloc (filename_len);
 
   while (*cwd_p && IS_SAME_PATH_CHAR (*cwd_p, *path_p))
     {
@@ -1332,29 +1191,29 @@ shortpath (cwd, filename)
     {
       /* whole pwd matched */
       if (!*path_p)            /* input *is* the current path! */
-        return ".";
+       return ".";
       else
-        return ++path_p;
+       return ++path_p;
     }
   else
     {
       if (*path_p)
-        {
-          --cwd_p;
-          --path_p;
-          while (! IS_DIR_SEPARATOR (*cwd_p))     /* backup to last slash */
-            {
-              --cwd_p;
-              --path_p;
-            }
-          cwd_p++;
-          path_p++;
-          unmatched_slash_count++;
-        }
+       {
+         --cwd_p;
+         --path_p;
+         while (! IS_DIR_SEPARATOR (*cwd_p))     /* backup to last slash */
+           {
+             --cwd_p;
+             --path_p;
+           }
+         cwd_p++;
+         path_p++;
+         unmatched_slash_count++;
+       }
 
       /* Find out how many directory levels in cwd were *not* matched.  */
       while (*cwd_p++)
-        if (IS_DIR_SEPARATOR (*(cwd_p-1)))
+       if (IS_DIR_SEPARATOR (*(cwd_p-1)))
          unmatched_slash_count++;
 
       /* Now we know how long the "short name" will be.
@@ -1364,15 +1223,15 @@ shortpath (cwd, filename)
 
       /* For each of them, put a `../' at the beginning of the short name.  */
       while (unmatched_slash_count--)
-        {
+       {
          /* Give up if the result gets to be longer
             than the absolute path name.  */
          if (rel_buffer + filename_len <= rel_buf_p + 3)
            return filename;
-          *rel_buf_p++ = '.';
-          *rel_buf_p++ = '.';
-          *rel_buf_p++ = DIR_SEPARATOR;
-        }
+         *rel_buf_p++ = '.';
+         *rel_buf_p++ = '.';
+         *rel_buf_p++ = DIR_SEPARATOR;
+       }
 
       /* Then tack on the unmatched part of the desired file's name.  */
       do
@@ -1384,7 +1243,7 @@ shortpath (cwd, filename)
 
       --rel_buf_p;
       if (IS_DIR_SEPARATOR (*(rel_buf_p-1)))
-        *--rel_buf_p = '\0';
+       *--rel_buf_p = '\0';
       return rel_buffer;
     }
 }
@@ -1398,9 +1257,7 @@ shortpath (cwd, filename)
    That is probably a bug in AIX, but might as well avoid the warning.  */
 
 static file_info *
-find_file (filename, do_not_stat)
-     const char *filename;
-     int do_not_stat;
+find_file (const char *filename, int do_not_stat)
 {
   hash_table_entry *hash_entry_p;
 
@@ -1410,24 +1267,24 @@ find_file (filename, do_not_stat)
   else
     {
       struct stat stat_buf;
-      file_info *file_p = (file_info *) xmalloc (sizeof (file_info));
+      file_info *file_p = xmalloc (sizeof (file_info));
 
       /* If we cannot get status on any given source file, give a warning
-         and then just set its time of last modification to infinity.  */
+        and then just set its time of last modification to infinity.  */
 
       if (do_not_stat)
-        stat_buf.st_mtime = (time_t) 0;
+       stat_buf.st_mtime = (time_t) 0;
       else
-        {
-          if (stat (filename, &stat_buf) == -1)
-            {
+       {
+         if (stat (filename, &stat_buf) == -1)
+           {
              int errno_val = errno;
-              notice ("%s: %s: can't get status: %s\n",
+             notice ("%s: %s: can't get status: %s\n",
                      pname, shortpath (NULL, filename),
                      xstrerror (errno_val));
-              stat_buf.st_mtime = (time_t) -1;
-            }
-        }
+             stat_buf.st_mtime = (time_t) -1;
+           }
+       }
 
       hash_entry_p->fip = file_p;
       file_p->hash_entry = hash_entry_p;
@@ -1441,7 +1298,7 @@ find_file (filename, do_not_stat)
    messed up.  */
 
 static void
-aux_info_corrupted ()
+aux_info_corrupted (void)
 {
   notice ("\n%s: fatal error: aux info file corrupted at line %d\n",
          pname, current_aux_info_lineno);
@@ -1452,8 +1309,7 @@ aux_info_corrupted ()
 /* Check to see that a condition is true.  This is kind of like an assert.  */
 
 static void
-check_aux_info (cond)
-     int cond;
+check_aux_info (int cond)
 {
   if (! cond)
     aux_info_corrupted ();
@@ -1464,8 +1320,7 @@ check_aux_info (cond)
    return a pointer to it.  */
 
 static const char *
-find_corresponding_lparen (p)
-     const char *p;
+find_corresponding_lparen (const char *p)
 {
   const char *q;
   int paren_depth;
@@ -1473,14 +1328,14 @@ find_corresponding_lparen (p)
   for (paren_depth = 1, q = p-1; paren_depth; q--)
     {
       switch (*q)
-        {
-          case ')':
-            paren_depth++;
-            break;
-          case '(':
-            paren_depth--;
-            break;
-        }
+       {
+       case ')':
+         paren_depth++;
+         break;
+       case '(':
+         paren_depth--;
+         break;
+       }
     }
   return ++q;
 }
@@ -1488,12 +1343,10 @@ find_corresponding_lparen (p)
 /* Given a line from  an aux info file, and a time at which the aux info
    file it came from was created, check to see if the item described in
    the line comes from a file which has been modified since the aux info
-   file was created.  If so, return non-zero, else return zero.  */
+   file was created.  If so, return nonzero, else return zero.  */
 
 static int
-referenced_file_is_newer (l, aux_info_mtime)
-     const char *l;
-     time_t aux_info_mtime;
+referenced_file_is_newer (const char *l, time_t aux_info_mtime)
 {
   const char *p;
   file_info *fi_p;
@@ -1508,11 +1361,11 @@ referenced_file_is_newer (l, aux_info_mtime)
 
     while (*p != ':'
 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
-           || (*p == ':' && *p && *(p+1) && IS_DIR_SEPARATOR (*(p+1)))
+          || (*p == ':' && *p && *(p+1) && IS_DIR_SEPARATOR (*(p+1)))
 #endif
-           )
+          )
       p++;
-    filename = (char *) alloca ((size_t) (p - filename_start) + 1);
+    filename = alloca ((size_t) (p - filename_start) + 1);
     strncpy (filename, filename_start, (size_t) (p - filename_start));
     filename[p-filename_start] = '\0';
   }
@@ -1543,13 +1396,11 @@ referenced_file_is_newer (l, aux_info_mtime)
    pertaining to this particular function name.  */
 
 static void
-save_def_or_dec (l, is_syscalls)
-     const char *l;
-     int is_syscalls;
+save_def_or_dec (const char *l, int is_syscalls)
 {
   const char *p;
   const char *semicolon_p;
-  def_dec_info *def_dec_p = (def_dec_info *) xmalloc (sizeof (def_dec_info));
+  def_dec_info *def_dec_p = xmalloc (sizeof (def_dec_info));
 
 #ifndef UNPROTOIZE
   def_dec_p->written = 0;
@@ -1570,11 +1421,11 @@ save_def_or_dec (l, is_syscalls)
 
     while (*p != ':'
 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
-           || (*p == ':' && *p && *(p+1) && IS_DIR_SEPARATOR (*(p+1)))
+          || (*p == ':' && *p && *(p+1) && IS_DIR_SEPARATOR (*(p+1)))
 #endif
-           )
+          )
       p++;
-    filename = (char *) alloca ((size_t) (p - filename_start) + 1);
+    filename = alloca ((size_t) (p - filename_start) + 1);
     strncpy (filename, filename_start, (size_t) (p - filename_start));
     filename[p-filename_start] = '\0';
 
@@ -1582,7 +1433,7 @@ save_def_or_dec (l, is_syscalls)
        which contained this particular def or dec item.  Note that this call
        may cause a new file_info record to be created if this is the first time
        that we have ever known about this particular file.
-  
+
        Note that we started out by forcing all of the base source file names
        (i.e. the names of the aux_info files with the .X stripped off) into the
        filenames hash table, and we simultaneously setup file_info records for
@@ -1591,7 +1442,7 @@ save_def_or_dec (l, is_syscalls)
        act as file_info records for the "original" (i.e. un-included) files
        which were submitted to gcc for compilation (when the -aux-info
        option was used).  */
-  
+
     def_dec_p->file = find_file (abspath (invocation_filename, filename), is_syscalls);
   }
 
@@ -1601,9 +1452,9 @@ save_def_or_dec (l, is_syscalls)
 
     while (*p != ':'
 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
-           || (*p == ':' && *p && *(p+1) && IS_DIR_SEPARATOR (*(p+1)))
+          || (*p == ':' && *p && *(p+1) && IS_DIR_SEPARATOR (*(p+1)))
 #endif
-           )
+          )
       p++;
     strncpy (line_number, line_number_start, (size_t) (p - line_number_start));
     line_number[p-line_number_start] = '\0';
@@ -1704,16 +1555,15 @@ save_def_or_dec (l, is_syscalls)
       const char *left_paren_p = find_corresponding_lparen (p);
 #ifndef UNPROTOIZE
       {
-        f_list_chain_item *cip
-         = (f_list_chain_item *) xmalloc (sizeof (f_list_chain_item));
+       f_list_chain_item *cip = xmalloc (sizeof (f_list_chain_item));
 
-        cip->formals_list
+       cip->formals_list
          = dupnstr (left_paren_p + 1, (size_t) (p - (left_paren_p+1)));
-      
-        /* Add the new chain item at the head of the current list.  */
 
-        cip->chain_next = def_dec_p->f_list_chain;
-        def_dec_p->f_list_chain = cip;
+       /* Add the new chain item at the head of the current list.  */
+
+       cip->chain_next = def_dec_p->f_list_chain;
+       def_dec_p->f_list_chain = cip;
       }
 #endif /* !defined (UNPROTOIZE) */
       def_dec_p->f_list_count++;
@@ -1721,15 +1571,15 @@ save_def_or_dec (l, is_syscalls)
       p = left_paren_p - 2;
 
       /* p must now point either to another right paren, or to the last
-         character of the name of the function that was declared/defined.
-         If p points to another right paren, then this indicates that we
-         are dealing with multiple formals lists.  In that case, there
-         really should be another right paren preceding this right paren.  */
+        character of the name of the function that was declared/defined.
+        If p points to another right paren, then this indicates that we
+        are dealing with multiple formals lists.  In that case, there
+        really should be another right paren preceding this right paren.  */
 
       if (*p != ')')
-        break;
+       break;
       else
-        check_aux_info (*--p == ')');
+       check_aux_info (*--p == ')');
     }
 
 
@@ -1747,7 +1597,7 @@ save_def_or_dec (l, is_syscalls)
     /* p now points to the leftmost character of the function name.  */
 
     {
-      char *fn_string = (char *) alloca (past_fn - p + 1);
+      char *fn_string = alloca (past_fn - p + 1);
 
       strncpy (fn_string, p, (size_t) (past_fn - p));
       fn_string[past_fn-p] = '\0';
@@ -1775,19 +1625,19 @@ save_def_or_dec (l, is_syscalls)
 
     for (other = def_dec_p->hash_entry->ddip; other; other = other->next_for_func)
       {
-        if (def_dec_p->line == other->line && def_dec_p->file == other->file)
-          {
-            if (strcmp (def_dec_p->ansi_decl, other->ansi_decl))
-              {
-                notice ("%s:%d: declaration of function `%s' takes different forms\n",
+       if (def_dec_p->line == other->line && def_dec_p->file == other->file)
+         {
+           if (strcmp (def_dec_p->ansi_decl, other->ansi_decl))
+             {
+               notice ("%s:%d: declaration of function '%s' takes different forms\n",
                        def_dec_p->file->hash_entry->symbol,
                        def_dec_p->line,
                        def_dec_p->hash_entry->symbol);
-                exit (FATAL_EXIT_CODE);
-              }
-            free_def_dec (def_dec_p);
-            return;
-          }
+               exit (FATAL_EXIT_CODE);
+             }
+           free_def_dec (def_dec_p);
+           return;
+         }
       }
   }
 
@@ -1819,15 +1669,15 @@ save_def_or_dec (l, is_syscalls)
       check_aux_info (*++p == '(');
 
       {
-        const char *kr_names_start = ++p;   /* Point just inside '('.  */
+       const char *kr_names_start = ++p;   /* Point just inside '('.  */
 
-        while (*p++ != ')')
-          continue;
-        p--;           /* point to closing right paren */
+       while (*p++ != ')')
+         continue;
+       p--;            /* point to closing right paren */
 
-        /* Make a copy of the K&R parameter names list.  */
+       /* Make a copy of the K&R parameter names list.  */
 
-        def_dec_p->formal_names
+       def_dec_p->formal_names
          = dupnstr (kr_names_start, (size_t) (p - kr_names_start));
       }
 
@@ -1835,42 +1685,42 @@ save_def_or_dec (l, is_syscalls)
       p++;
 
       /* p now points to the first character of the K&R style declarations
-         list (if there is one) or to the star-slash combination that ends
-         the comment in which such lists get embedded.  */
+        list (if there is one) or to the star-slash combination that ends
+        the comment in which such lists get embedded.  */
 
       /* Make a copy of the K&R formal decls list and set the def_dec record
-         to point to it.  */
+        to point to it.  */
 
       if (*p == '*')           /* Are there no K&R declarations? */
-        {
-          check_aux_info (*++p == '/');
-          def_dec_p->formal_decls = "";
-        }
+       {
+         check_aux_info (*++p == '/');
+         def_dec_p->formal_decls = "";
+       }
       else
-        {
-          const char *kr_decls_start = p;
+       {
+         const char *kr_decls_start = p;
 
-          while (p[0] != '*' || p[1] != '/')
-            p++;
-          p--;
+         while (p[0] != '*' || p[1] != '/')
+           p++;
+         p--;
 
-          check_aux_info (*p == ' ');
+         check_aux_info (*p == ' ');
 
-          def_dec_p->formal_decls
+         def_dec_p->formal_decls
            = dupnstr (kr_decls_start, (size_t) (p - kr_decls_start));
-        }
+       }
 
       /* Handle a special case.  If we have a function definition marked as
-         being in "old" style, and if its formal names list is empty, then
-         it may actually have the string "void" in its real formals list
-         in the original source code.  Just to make sure, we will get setup
-         to convert such things anyway.
+        being in "old" style, and if its formal names list is empty, then
+        it may actually have the string "void" in its real formals list
+        in the original source code.  Just to make sure, we will get setup
+        to convert such things anyway.
 
-         This kludge only needs to be here because of an insurmountable
-         problem with generating .X files.  */
+        This kludge only needs to be here because of an insurmountable
+        problem with generating .X files.  */
 
       if (!def_dec_p->prototyped && !*def_dec_p->formal_names)
-        def_dec_p->prototyped = 1;
+       def_dec_p->prototyped = 1;
     }
 
   /* Since we are unprotoizing, if this item is already in old (K&R) style,
@@ -1908,25 +1758,25 @@ save_def_or_dec (l, is_syscalls)
       const def_dec_info *next = curr->next_in_file;
 
       while (next && (line < curr->line))
-        {
-          prev = curr;
-          curr = next;
-          next = next->next_in_file;
-        }
+       {
+         prev = curr;
+         curr = next;
+         next = next->next_in_file;
+       }
       if (line >= curr->line)
-        {
-          def_dec_p->next_in_file = curr;
-          if (prev)
-            ((NONCONST def_dec_info *) prev)->next_in_file = def_dec_p;
-          else
-            def_dec_p->file->defs_decs = def_dec_p;
-        }
+       {
+         def_dec_p->next_in_file = curr;
+         if (prev)
+           ((NONCONST def_dec_info *) prev)->next_in_file = def_dec_p;
+         else
+           def_dec_p->file->defs_decs = def_dec_p;
+       }
       else     /* assert (next == NULL); */
-        {
-          ((NONCONST def_dec_info *) curr)->next_in_file = def_dec_p;
-          /* assert (next == NULL); */
-          def_dec_p->next_in_file = next;
-        }
+       {
+         ((NONCONST def_dec_info *) curr)->next_in_file = def_dec_p;
+         /* assert (next == NULL); */
+         def_dec_p->next_in_file = next;
+       }
     }
 }
 \f
@@ -1938,13 +1788,12 @@ save_def_or_dec (l, is_syscalls)
    and adding '-aux-info AUXFILE -S  -o /dev/null INFILE' at the end.  */
 
 static void
-munge_compile_params (params_list)
-     const char *params_list;
+munge_compile_params (const char *params_list)
 {
   /* Build up the contents in a temporary vector
      that is so big that to has to be big enough.  */
   const char **temp_params
-    = (const char **) alloca ((strlen (params_list) + 8) * sizeof (char *));
+    = alloca ((strlen (params_list) + 8) * sizeof (char *));
   int param_count = 0;
   const char *param;
   struct stat st;
@@ -1953,38 +1802,38 @@ munge_compile_params (params_list)
   for (;;)
     {
       while (ISSPACE ((const unsigned char)*params_list))
-        params_list++;
+       params_list++;
       if (!*params_list)
-        break;
+       break;
       param = params_list;
       while (*params_list && !ISSPACE ((const unsigned char)*params_list))
-        params_list++;
+       params_list++;
       if (param[0] != '-')
-        temp_params[param_count++]
+       temp_params[param_count++]
          = dupnstr (param, (size_t) (params_list - param));
       else
-        {
-          switch (param[1])
-            {
-              case 'g':
-              case 'O':
-              case 'S':
-              case 'c':
-                break;         /* Don't copy these.  */
-              case 'o':
-                while (ISSPACE ((const unsigned char)*params_list))
-                  params_list++;
-                while (*params_list
-                      && !ISSPACE ((const unsigned char)*params_list))
-                  params_list++;
-                break;
-              default:
-                temp_params[param_count++]
-                 = dupnstr (param, (size_t) (params_list - param));
-            }
-        }
+       {
+         switch (param[1])
+           {
+           case 'g':
+           case 'O':
+           case 'S':
+           case 'c':
+             break;            /* Don't copy these.  */
+           case 'o':
+             while (ISSPACE ((const unsigned char)*params_list))
+               params_list++;
+             while (*params_list
+                    && !ISSPACE ((const unsigned char)*params_list))
+               params_list++;
+             break;
+           default:
+             temp_params[param_count++]
+               = dupnstr (param, (size_t) (params_list - param));
+           }
+       }
       if (!*params_list)
-        break;
+       break;
     }
   temp_params[param_count++] = "-aux-info";
 
@@ -1994,7 +1843,7 @@ munge_compile_params (params_list)
 
   temp_params[param_count++] = "-S";
   temp_params[param_count++] = "-o";
-  
+
   if ((stat (HOST_BIT_BUCKET, &st) == 0)
       && (!S_ISDIR (st.st_mode))
       && (access (HOST_BIT_BUCKET, W_OK) == 0))
@@ -2013,8 +1862,7 @@ munge_compile_params (params_list)
 
   /* Make a copy of the compile_params in heap space.  */
 
-  compile_params
-    = (const char **) xmalloc (sizeof (char *) * (param_count+1));
+  compile_params = xmalloc (sizeof (char *) * (param_count+1));
   memcpy (compile_params, temp_params, sizeof (char *) * param_count);
 }
 
@@ -2024,8 +1872,7 @@ munge_compile_params (params_list)
    The result is a boolean indicating success.  */
 
 static int
-gen_aux_info_file (base_filename)
-     const char *base_filename;
+gen_aux_info_file (const char *base_filename)
 {
   if (!input_file_name_index)
     munge_compile_params ("");
@@ -2035,9 +1882,9 @@ gen_aux_info_file (base_filename)
   /* Add .X to source file name to get aux-info file name.  */
   compile_params[aux_info_file_name_index] =
     concat (compile_params[input_file_name_index], aux_info_suffix, NULL);
-  
+
   if (!quiet_flag)
-    notice ("%s: compiling `%s'\n",
+    notice ("%s: compiling '%s'\n",
            pname, compile_params[input_file_name_index]);
 
   {
@@ -2079,7 +1926,7 @@ gen_aux_info_file (base_filename)
          }
        return 1;
       }
-    abort ();
+    gcc_unreachable ();
   }
 }
 \f
@@ -2087,14 +1934,11 @@ gen_aux_info_file (base_filename)
    Save all of the important stuff for later.  */
 
 static void
-process_aux_info_file (base_source_filename, keep_it, is_syscalls)
-     const char *base_source_filename;
-     int keep_it;
-     int is_syscalls;
+process_aux_info_file (const char *base_source_filename, int keep_it,
+                      int is_syscalls)
 {
   size_t base_len = strlen (base_source_filename);
-  char * aux_info_filename
-    = (char *) alloca (base_len + strlen (aux_info_suffix) + 1);
+  char * aux_info_filename = alloca (base_len + strlen (aux_info_suffix) + 1);
   char *aux_info_base;
   char *aux_info_limit;
   char *aux_info_relocated_name;
@@ -2125,7 +1969,7 @@ start_over: ;
        {
          if (is_syscalls)
            {
-             notice ("%s: warning: missing SYSCALLS file `%s'\n",
+             notice ("%s: warning: missing SYSCALLS file '%s'\n",
                      pname, aux_info_filename);
              return;
            }
@@ -2134,7 +1978,7 @@ start_over: ;
       else
        {
          int errno_val = errno;
-         notice ("%s: can't read aux info file `%s': %s\n",
+         notice ("%s: can't read aux info file '%s': %s\n",
                  pname, shortpath (NULL, aux_info_filename),
                  xstrerror (errno_val));
          errors++;
@@ -2163,7 +2007,7 @@ start_over: ;
       if (access (aux_info_filename, R_OK) == -1)
        {
          int errno_val = errno;
-         notice ("%s: can't read aux info file `%s': %s\n",
+         notice ("%s: can't read aux info file '%s': %s\n",
                  pname, shortpath (NULL, aux_info_filename),
                  xstrerror (errno_val));
          errors++;
@@ -2175,27 +2019,27 @@ start_over: ;
     struct stat stat_buf;
 
     /* Get some status information about this aux_info file.  */
-  
+
     if (stat (aux_info_filename, &stat_buf) == -1)
       {
        int errno_val = errno;
-        notice ("%s: can't get status of aux info file `%s': %s\n",
+       notice ("%s: can't get status of aux info file '%s': %s\n",
                pname, shortpath (NULL, aux_info_filename),
                xstrerror (errno_val));
-        errors++;
-        return;
+       errors++;
+       return;
       }
-  
+
     /* Check on whether or not this aux_info file is zero length.  If it is,
        then just ignore it and return.  */
-  
+
     if ((aux_info_size = stat_buf.st_size) == 0)
       return;
-  
+
     /* Get the date/time of last modification for this aux_info file and
        remember it.  We will have to check that any source files that it
        contains information about are at least this old or older.  */
-  
+
     aux_info_mtime = stat_buf.st_mtime;
 
     if (!is_syscalls)
@@ -2207,7 +2051,7 @@ start_over: ;
        if (stat (base_source_filename, &stat_buf) == -1)
          {
            int errno_val = errno;
-           notice ("%s: can't get status of aux info file `%s': %s\n",
+           notice ("%s: can't get status of aux info file '%s': %s\n",
                    pname, shortpath (NULL, base_source_filename),
                    xstrerror (errno_val));
            errors++;
@@ -2226,7 +2070,7 @@ start_over: ;
     int fd_flags;
 
     /* Open the aux_info file.  */
-  
+
     fd_flags = O_RDONLY;
 #ifdef O_BINARY
     /* Use binary mode to avoid having to deal with different EOL characters.  */
@@ -2235,43 +2079,43 @@ start_over: ;
     if ((aux_info_file = open (aux_info_filename, fd_flags, 0444 )) == -1)
       {
        int errno_val = errno;
-        notice ("%s: can't open aux info file `%s' for reading: %s\n",
+       notice ("%s: can't open aux info file '%s' for reading: %s\n",
                pname, shortpath (NULL, aux_info_filename),
                xstrerror (errno_val));
-        return;
+       return;
       }
-  
+
     /* Allocate space to hold the aux_info file in memory.  */
-  
+
     aux_info_base = xmalloc (aux_info_size + 1);
     aux_info_limit = aux_info_base + aux_info_size;
     *aux_info_limit = '\0';
-  
+
     /* Read the aux_info file into memory.  */
-  
+
     if (safe_read (aux_info_file, aux_info_base, aux_info_size) !=
        (int) aux_info_size)
       {
        int errno_val = errno;
-        notice ("%s: error reading aux info file `%s': %s\n",
+       notice ("%s: error reading aux info file '%s': %s\n",
                pname, shortpath (NULL, aux_info_filename),
                xstrerror (errno_val));
-        free (aux_info_base);
-        close (aux_info_file);
-        return;
+       free (aux_info_base);
+       close (aux_info_file);
+       return;
       }
-  
+
     /* Close the aux info file.  */
-  
+
     if (close (aux_info_file))
       {
        int errno_val = errno;
-        notice ("%s: error closing aux info file `%s': %s\n",
+       notice ("%s: error closing aux info file '%s': %s\n",
                pname, shortpath (NULL, aux_info_filename),
                xstrerror (errno_val));
-        free (aux_info_base);
-        close (aux_info_file);
-        return;
+       free (aux_info_base);
+       close (aux_info_file);
+       return;
       }
   }
 
@@ -2282,7 +2126,7 @@ start_over: ;
     if (unlink (aux_info_filename) == -1)
       {
        int errno_val = errno;
-       notice ("%s: can't delete aux info file `%s': %s\n",
+       notice ("%s: can't delete aux info file '%s': %s\n",
                pname, shortpath (NULL, aux_info_filename),
                xstrerror (errno_val));
       }
@@ -2299,9 +2143,9 @@ start_over: ;
 
     while (*p != ':'
 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
-           || (*p == ':' && *p && *(p+1) && IS_DIR_SEPARATOR (*(p+1)))
+          || (*p == ':' && *p && *(p+1) && IS_DIR_SEPARATOR (*(p+1)))
 #endif
-           )
+          )
       p++;
     p++;
     while (*p == ' ')
@@ -2315,7 +2159,7 @@ start_over: ;
       continue;
     aux_info_second_line = p;
     aux_info_relocated_name = 0;
-    if (! is_abspath (invocation_filename))
+    if (! IS_ABSOLUTE_PATH (invocation_filename))
       {
        /* INVOCATION_FILENAME is relative;
           append it to BASE_SOURCE_FILENAME's dir.  */
@@ -2327,8 +2171,8 @@ start_over: ;
        {
          char *slash;
 
-         slash = strrchr (dir_end ? dir_end : aux_info_relocated_name, 
-                          DIR_SEPARATOR_2);
+         slash = strrchr (dir_end ? dir_end : aux_info_relocated_name,
+                          DIR_SEPARATOR_2);
          if (slash)
            dir_end = slash;
        }
@@ -2353,58 +2197,58 @@ start_over: ;
 
     if (!is_syscalls)
       {
-        current_aux_info_lineno = 2;
-    
-        for (aux_info_p = aux_info_second_line; *aux_info_p; )
-          {
-            if (referenced_file_is_newer (aux_info_p, aux_info_mtime))
-              {
-                free (aux_info_base);
+       current_aux_info_lineno = 2;
+
+       for (aux_info_p = aux_info_second_line; *aux_info_p; )
+         {
+           if (referenced_file_is_newer (aux_info_p, aux_info_mtime))
+             {
+               free (aux_info_base);
                free (aux_info_relocated_name);
-                if (keep_it && unlink (aux_info_filename) == -1)
-                  {
+               if (keep_it && unlink (aux_info_filename) == -1)
+                 {
                    int errno_val = errno;
-                    notice ("%s: can't delete file `%s': %s\n",
+                   notice ("%s: can't delete file '%s': %s\n",
                            pname, shortpath (NULL, aux_info_filename),
                            xstrerror (errno_val));
-                    return;
-                  }
+                   return;
+                 }
                must_create = 1;
-                goto start_over;
-              }
-    
-            /* Skip over the rest of this line to start of next line.  */
-    
-            while (*aux_info_p != '\n')
-              aux_info_p++;
-            aux_info_p++;
-            current_aux_info_lineno++;
-          }
+               goto start_over;
+             }
+
+           /* Skip over the rest of this line to start of next line.  */
+
+           while (*aux_info_p != '\n')
+             aux_info_p++;
+           aux_info_p++;
+           current_aux_info_lineno++;
+         }
       }
 
     /* Now do the real pass on the aux_info lines.  Save their information in
        the in-core data base.  */
-  
+
     current_aux_info_lineno = 2;
-  
+
     for (aux_info_p = aux_info_second_line; *aux_info_p;)
       {
-        char *unexpanded_line = unexpand_if_needed (aux_info_p);
-  
-        if (unexpanded_line)
-          {
-            save_def_or_dec (unexpanded_line, is_syscalls);
-            free (unexpanded_line);
-          }
-        else
-          save_def_or_dec (aux_info_p, is_syscalls);
-  
-        /* Skip over the rest of this line and get to start of next line.  */
-  
-        while (*aux_info_p != '\n')
-          aux_info_p++;
-        aux_info_p++;
-        current_aux_info_lineno++;
+       char *unexpanded_line = unexpand_if_needed (aux_info_p);
+
+       if (unexpanded_line)
+         {
+           save_def_or_dec (unexpanded_line, is_syscalls);
+           free (unexpanded_line);
+         }
+       else
+         save_def_or_dec (aux_info_p, is_syscalls);
+
+       /* Skip over the rest of this line and get to start of next line.  */
+
+       while (*aux_info_p != '\n')
+         aux_info_p++;
+       aux_info_p++;
+       current_aux_info_lineno++;
       }
   }
 
@@ -2419,13 +2263,12 @@ start_over: ;
    function implements the -C option.  */
 
 static void
-rename_c_file (hp)
-     const hash_table_entry *hp;
+rename_c_file (const hash_table_entry *hp)
 {
   const char *filename = hp->symbol;
   int last_char_index = strlen (filename) - 1;
-  char *const new_filename = (char *) alloca (strlen (filename) 
-                                              + strlen (cplus_suffix) + 1);
+  char *const new_filename = alloca (strlen (filename)
+                                    + strlen (cplus_suffix) + 1);
 
   /* Note that we don't care here if the given file was converted or not.  It
      is possible that the given file was *not* converted, simply because there
@@ -2443,7 +2286,7 @@ rename_c_file (hp)
   if (rename (filename, new_filename) == -1)
     {
       int errno_val = errno;
-      notice ("%s: warning: can't rename file `%s' to `%s': %s\n",
+      notice ("%s: warning: can't rename file '%s' to '%s': %s\n",
              pname, shortpath (NULL, filename),
              shortpath (NULL, new_filename), xstrerror (errno_val));
       errors++;
@@ -2462,25 +2305,24 @@ rename_c_file (hp)
    order here.  */
 
 static void
-reverse_def_dec_list (hp)
-     const hash_table_entry *hp;
+reverse_def_dec_list (const hash_table_entry *hp)
 {
   file_info *file_p = hp->fip;
   def_dec_info *prev = NULL;
-  def_dec_info *current = (def_dec_info *)file_p->defs_decs;
+  def_dec_info *current = (def_dec_info *) file_p->defs_decs;
 
   if (!current)
     return;                    /* no list to reverse */
 
   prev = current;
-  if (! (current = (def_dec_info *)current->next_in_file))
+  if (! (current = (def_dec_info *) current->next_in_file))
     return;                    /* can't reverse a single list element */
 
   prev->next_in_file = NULL;
 
   while (current)
     {
-      def_dec_info *next = (def_dec_info *)current->next_in_file;
+      def_dec_info *next = (def_dec_info *) current->next_in_file;
 
       current->next_in_file = prev;
       prev = current;
@@ -2504,9 +2346,7 @@ reverse_def_dec_list (hp)
    contains all of the correct prototypes for system functions.  */
 
 static const def_dec_info *
-find_extern_def (head, user)
-     const def_dec_info *head;
-     const def_dec_info *user;
+find_extern_def (const def_dec_info *head, const def_dec_info *user)
 {
   const def_dec_info *dd_p;
   const def_dec_info *extern_def_p = NULL;
@@ -2538,56 +2378,56 @@ find_extern_def (head, user)
      code being converted contains its own definition of a function which
      could have been supplied by libc.a.  In such cases, we should avoid
      issuing the normal warning, and defer to the definition given in the
-     user's own code.   */
+     user's own code.  */
 
   for (dd_p = head; dd_p; dd_p = dd_p->next_for_func)
     if (dd_p->is_func_def && !dd_p->is_static)
       {
-        if (!extern_def_p)     /* Previous definition? */
-          extern_def_p = dd_p; /* Remember the first definition found.  */
-        else
-          {
-            /* Ignore definition just found if it came from SYSCALLS.c.X.  */
-
-            if (is_syscalls_file (dd_p->file))
-              continue;
-
-            /* Quietly replace the definition previously found with the one
-               just found if the previous one was from SYSCALLS.c.X.  */
-
-            if (is_syscalls_file (extern_def_p->file))
-              {
-                extern_def_p = dd_p;
-                continue;
-              }
-
-            /* If we get here, then there is a conflict between two function
-               declarations for the same function, both of which came from the
-               user's own code.  */
-
-            if (!conflict_noted)       /* first time we noticed? */
-              {
-                conflict_noted = 1;
-                notice ("%s: conflicting extern definitions of '%s'\n",
+       if (!extern_def_p)      /* Previous definition? */
+         extern_def_p = dd_p;  /* Remember the first definition found.  */
+       else
+         {
+           /* Ignore definition just found if it came from SYSCALLS.c.X.  */
+
+           if (is_syscalls_file (dd_p->file))
+             continue;
+
+           /* Quietly replace the definition previously found with the one
+              just found if the previous one was from SYSCALLS.c.X.  */
+
+           if (is_syscalls_file (extern_def_p->file))
+             {
+               extern_def_p = dd_p;
+               continue;
+             }
+
+           /* If we get here, then there is a conflict between two function
+              declarations for the same function, both of which came from the
+              user's own code.  */
+
+           if (!conflict_noted)        /* first time we noticed? */
+             {
+               conflict_noted = 1;
+               notice ("%s: conflicting extern definitions of '%s'\n",
                        pname, head->hash_entry->symbol);
-                if (!quiet_flag)
-                  {
-                    notice ("%s: declarations of '%s' will not be converted\n",
+               if (!quiet_flag)
+                 {
+                   notice ("%s: declarations of '%s' will not be converted\n",
                            pname, head->hash_entry->symbol);
-                    notice ("%s: conflict list for '%s' follows:\n",
+                   notice ("%s: conflict list for '%s' follows:\n",
                            pname, head->hash_entry->symbol);
-                    fprintf (stderr, "%s:     %s(%d): %s\n",
+                   fprintf (stderr, "%s:     %s(%d): %s\n",
                             pname,
                             shortpath (NULL, extern_def_p->file->hash_entry->symbol),
                             extern_def_p->line, extern_def_p->ansi_decl);
-                  }
-              }
-            if (!quiet_flag)
-              fprintf (stderr, "%s:     %s(%d): %s\n",
+                 }
+             }
+           if (!quiet_flag)
+             fprintf (stderr, "%s:     %s(%d): %s\n",
                       pname,
                       shortpath (NULL, dd_p->file->hash_entry->symbol),
                       dd_p->line, dd_p->ansi_decl);
-          }
+         }
       }
 
   /* We want to err on the side of caution, so if we found multiple conflicting
@@ -2600,64 +2440,64 @@ find_extern_def (head, user)
   if (!extern_def_p)
     {
       /* We have no definitions for this function so do the next best thing.
-         Search for an extern declaration already in prototype form.  */
+        Search for an extern declaration already in prototype form.  */
 
       for (dd_p = head; dd_p; dd_p = dd_p->next_for_func)
-        if (!dd_p->is_func_def && !dd_p->is_static && dd_p->prototyped)
-          {
-            extern_def_p = dd_p;       /* save a pointer to the definition */
-            if (!quiet_flag)
-              notice ("%s: warning: using formals list from %s(%d) for function `%s'\n",
+       if (!dd_p->is_func_def && !dd_p->is_static && dd_p->prototyped)
+         {
+           extern_def_p = dd_p;        /* save a pointer to the definition */
+           if (!quiet_flag)
+             notice ("%s: warning: using formals list from %s(%d) for function '%s'\n",
                      pname,
                      shortpath (NULL, dd_p->file->hash_entry->symbol),
                      dd_p->line, dd_p->hash_entry->symbol);
-            break;
-          }
+           break;
+         }
 
       /* Gripe about unprototyped function declarations that we found no
-         corresponding definition (or other source of prototype information)
-         for.
+        corresponding definition (or other source of prototype information)
+        for.
 
-         Gripe even if the unprototyped declaration we are worried about
-         exists in a file in one of the "system" include directories.  We
-         can gripe about these because we should have at least found a
-         corresponding (pseudo) definition in the SYSCALLS.c.X file.  If we
+        Gripe even if the unprototyped declaration we are worried about
+        exists in a file in one of the "system" include directories.  We
+        can gripe about these because we should have at least found a
+        corresponding (pseudo) definition in the SYSCALLS.c.X file.  If we
         didn't, then that means that the SYSCALLS.c.X file is missing some
-         needed prototypes for this particular system.  That is worth telling
-         the user about!  */
+        needed prototypes for this particular system.  That is worth telling
+        the user about!  */
 
       if (!extern_def_p)
-        {
-          const char *file = user->file->hash_entry->symbol;
+       {
+         const char *file = user->file->hash_entry->symbol;
 
-          if (!quiet_flag)
-            if (in_system_include_dir (file))
-              {
+         if (!quiet_flag)
+           if (in_system_include_dir (file))
+             {
                /* Why copy this string into `needed' at all?
                   Why not just use user->ansi_decl without copying?  */
-               char *needed = (char *) alloca (strlen (user->ansi_decl) + 1);
-                char *p;
+               char *needed = alloca (strlen (user->ansi_decl) + 1);
+               char *p;
 
-                strcpy (needed, user->ansi_decl);
-                p = (NONCONST char *) substr (needed, user->hash_entry->symbol)
-                    + strlen (user->hash_entry->symbol) + 2;
+               strcpy (needed, user->ansi_decl);
+               p = strstr (needed, user->hash_entry->symbol)
+                   + strlen (user->hash_entry->symbol) + 2;
                /* Avoid having ??? in the string.  */
                *p++ = '?';
                *p++ = '?';
                *p++ = '?';
-                strcpy (p, ");");
+               strcpy (p, ");");
 
-                notice ("%s: %d: `%s' used but missing from SYSCALLS\n",
+               notice ("%s: %d: '%s' used but missing from SYSCALLS\n",
                        shortpath (NULL, file), user->line,
                        needed+7);      /* Don't print "extern " */
-              }
+             }
 #if 0
-            else
-              notice ("%s: %d: warning: no extern definition for `%s'\n",
+           else
+             notice ("%s: %d: warning: no extern definition for '%s'\n",
                      shortpath (NULL, file), user->line,
                      user->hash_entry->symbol);
 #endif
-        }
+       }
     }
   return extern_def_p;
 }
@@ -2667,8 +2507,7 @@ find_extern_def (head, user)
    from the def_dec_info record pointer which is passed in.  */
 
 static const def_dec_info *
-find_static_definition (user)
-     const def_dec_info *user;
+find_static_definition (const def_dec_info *user)
 {
   const def_dec_info *head = user->hash_entry->ddip;
   const def_dec_info *dd_p;
@@ -2678,19 +2517,19 @@ find_static_definition (user)
   for (dd_p = head; dd_p; dd_p = dd_p->next_for_func)
     if (dd_p->is_func_def && dd_p->is_static && (dd_p->file == user->file))
       {
-        static_def_p = dd_p;   /* save a pointer to the definition */
-        num_static_defs++;
+       static_def_p = dd_p;    /* save a pointer to the definition */
+       num_static_defs++;
       }
   if (num_static_defs == 0)
     {
       if (!quiet_flag)
-        notice ("%s: warning: no static definition for `%s' in file `%s'\n",
+       notice ("%s: warning: no static definition for '%s' in file '%s'\n",
                pname, head->hash_entry->symbol,
                shortpath (NULL, user->file->hash_entry->symbol));
     }
   else if (num_static_defs > 1)
     {
-      notice ("%s: multiple static defs of `%s' in file `%s'\n",
+      notice ("%s: multiple static defs of '%s' in file '%s'\n",
              pname, head->hash_entry->symbol,
              shortpath (NULL, user->file->hash_entry->symbol));
       return NULL;
@@ -2717,8 +2556,7 @@ find_static_definition (user)
    more details.  */
 
 static void
-connect_defs_and_decs (hp)
-     const hash_table_entry *hp;
+connect_defs_and_decs (const hash_table_entry *hp)
 {
   const def_dec_info *dd_p;
   const def_dec_info *extern_def_p = NULL;
@@ -2764,12 +2602,12 @@ connect_defs_and_decs (hp)
   for (dd_p = hp->ddip; dd_p; dd_p = dd_p->next_for_func)
     if (!dd_p->is_func_def && !dd_p->is_static && !dd_p->definition)
       {
-        if (first_extern_reference)
-          {
-            extern_def_p = find_extern_def (hp->ddip, dd_p);
-            first_extern_reference = 0;
-          }
-        ((NONCONST def_dec_info *) dd_p)->definition = extern_def_p;
+       if (first_extern_reference)
+         {
+           extern_def_p = find_extern_def (hp->ddip, dd_p);
+           first_extern_reference = 0;
+         }
+       ((NONCONST def_dec_info *) dd_p)->definition = extern_def_p;
       }
 
   /* Traverse the list of definitions and declarations for this particular
@@ -2795,37 +2633,37 @@ connect_defs_and_decs (hp)
   for (dd_p = hp->ddip; dd_p; dd_p = dd_p->next_for_func)
     if (!dd_p->is_func_def && dd_p->is_static && !dd_p->definition)
       {
-        const def_dec_info *dd_p2;
-        const def_dec_info *static_def;
-
-        /* We have now found a single static declaration for which we need to
-           find a matching definition.  We want to minimize the work (and the
-           number of warnings), so we will find an appropriate (matching)
-           static definition for this declaration, and then distribute it
-           (as the definition for) any and all other static declarations
-           for this function name which occur within the same file, and which
-           do not already have definitions.
-
-           Note that a trick is used here to prevent subsequent attempts to
-           call find_static_definition for a given function-name & file
-           if the first such call returns NULL.  Essentially, we convert
-           these NULL return values to -1, and put the -1 into the definition
-           field for each other static declaration from the same file which
-           does not already have an associated definition.
-           This makes these other static declarations look like they are
-           actually defined already when the outer loop here revisits them
-           later on.  Thus, the outer loop will skip over them.  Later, we
-           turn the -1's back to NULL's.  */
-
-      ((NONCONST def_dec_info *) dd_p)->definition =
-        (static_def = find_static_definition (dd_p))
-          ? static_def
-          : (const def_dec_info *) -1;
-
-      for (dd_p2 = dd_p->next_for_func; dd_p2; dd_p2 = dd_p2->next_for_func)
-        if (!dd_p2->is_func_def && dd_p2->is_static
-         && !dd_p2->definition && (dd_p2->file == dd_p->file))
-          ((NONCONST def_dec_info *)dd_p2)->definition = dd_p->definition;
+       const def_dec_info *dd_p2;
+       const def_dec_info *static_def;
+
+       /* We have now found a single static declaration for which we need to
+          find a matching definition.  We want to minimize the work (and the
+          number of warnings), so we will find an appropriate (matching)
+          static definition for this declaration, and then distribute it
+          (as the definition for) any and all other static declarations
+          for this function name which occur within the same file, and which
+          do not already have definitions.
+
+          Note that a trick is used here to prevent subsequent attempts to
+          call find_static_definition for a given function-name & file
+          if the first such call returns NULL.  Essentially, we convert
+          these NULL return values to -1, and put the -1 into the definition
+          field for each other static declaration from the same file which
+          does not already have an associated definition.
+          This makes these other static declarations look like they are
+          actually defined already when the outer loop here revisits them
+          later on.  Thus, the outer loop will skip over them.  Later, we
+          turn the -1's back to NULL's.  */
+
+       ((NONCONST def_dec_info *) dd_p)->definition =
+         (static_def = find_static_definition (dd_p))
+         ? static_def
+         : (const def_dec_info *) -1;
+
+       for (dd_p2 = dd_p->next_for_func; dd_p2; dd_p2 = dd_p2->next_for_func)
+         if (!dd_p2->is_func_def && dd_p2->is_static
+             && !dd_p2->definition && (dd_p2->file == dd_p->file))
+           ((NONCONST def_dec_info *) dd_p2)->definition = dd_p->definition;
       }
 
   /* Convert any dummy (-1) definitions we created in the step above back to
@@ -2842,8 +2680,7 @@ connect_defs_and_decs (hp)
    original source line number that the given pointer points into.  */
 
 static int
-identify_lineno (clean_p)
-     const char *clean_p;
+identify_lineno (const char *clean_p)
 {
   int line_num = 1;
   const char *scan_p;
@@ -2857,16 +2694,15 @@ identify_lineno (clean_p)
 /* Issue an error message and give up on doing this particular edit.  */
 
 static void
-declare_source_confusing (clean_p)
-     const char *clean_p;
+declare_source_confusing (const char *clean_p)
 {
   if (!quiet_flag)
     {
       if (clean_p == 0)
-        notice ("%s: %d: warning: source too confusing\n",
+       notice ("%s: %d: warning: source too confusing\n",
                shortpath (NULL, convert_filename), last_known_line_number);
       else
-        notice ("%s: %d: warning: source too confusing\n",
+       notice ("%s: %d: warning: source too confusing\n",
                shortpath (NULL, convert_filename),
                identify_lineno (clean_p));
     }
@@ -2878,9 +2714,7 @@ declare_source_confusing (clean_p)
    converting this particular source file.  */
 
 static void
-check_source (cond, clean_p)
-     int cond;
-     const char *clean_p;
+check_source (int cond, const char *clean_p)
 {
   if (!cond)
     declare_source_confusing (clean_p);
@@ -2902,16 +2736,14 @@ check_source (cond, clean_p)
    of the in-core cleaned buffer again.  */
 
 static const char *
-seek_to_line (n)
-     int n;
+seek_to_line (int n)
 {
-  if (n < last_known_line_number)
-    abort ();
+  gcc_assert (n >= last_known_line_number);
 
   while (n > last_known_line_number)
     {
       while (*last_known_line_start != '\n')
-        check_source (++last_known_line_start < clean_text_limit, 0);
+       check_source (++last_known_line_start < clean_text_limit, 0);
       last_known_line_start++;
       last_known_line_number++;
     }
@@ -2922,8 +2754,7 @@ seek_to_line (n)
    to the next non-whitespace character which follows it.  */
 
 static const char *
-forward_to_next_token_char (ptr)
-     const char *ptr;
+forward_to_next_token_char (const char *ptr)
 {
   for (++ptr; ISSPACE ((const unsigned char)*ptr);
        check_source (++ptr < clean_text_limit, 0))
@@ -2936,14 +2767,12 @@ forward_to_next_token_char (ptr)
    buffer ultimately go through here.  */
 
 static void
-output_bytes (str, len)
-     const char *str;
-     size_t len;
+output_bytes (const char *str, size_t len)
 {
   if ((repl_write_ptr + 1) + len >= repl_text_limit)
     {
       size_t new_size = (repl_text_limit - repl_text_base) << 1;
-      char *new_buf = (char *) xrealloc (repl_text_base, new_size);
+      char *new_buf = xrealloc (repl_text_base, new_size);
 
       repl_write_ptr = new_buf + (repl_write_ptr - repl_text_base);
       repl_text_base = new_buf;
@@ -2957,8 +2786,7 @@ output_bytes (str, len)
    the current output buffer.  */
 
 static void
-output_string (str)
-     const char *str;
+output_string (const char *str)
 {
   output_bytes (str, strlen (str));
 }
@@ -2983,8 +2811,7 @@ output_string (str)
    byte pointed to by the argument pointer `p'.  */
 
 static void
-output_up_to (p)
-     const char *p;
+output_up_to (const char *p)
 {
   size_t copy_length = (size_t) (p - clean_read_ptr);
   const char *copy_start = orig_text_base+(clean_read_ptr-clean_text_base)+1;
@@ -3003,15 +2830,14 @@ output_up_to (p)
    otherwise.  */
 
 static int
-other_variable_style_function (ansi_header)
-     const char *ansi_header;
+other_variable_style_function (const char *ansi_header)
 {
 #ifdef UNPROTOIZE
 
   /* See if we have a stdarg function, or a function which has stdarg style
      parameters or a stdarg style return type.  */
 
-  return substr (ansi_header, "...") != 0;
+  return strstr (ansi_header, "...") != 0;
 
 #else /* !defined (UNPROTOIZE) */
 
@@ -3025,13 +2851,13 @@ other_variable_style_function (ansi_header)
     {
       const char *candidate;
 
-      if ((candidate = substr (p, varargs_style_indicator)) == 0)
-        return 0;
+      if ((candidate = strstr (p, varargs_style_indicator)) == 0)
+       return 0;
       else
-        if (!is_id_char (candidate[-1]) && !is_id_char (candidate[len]))
-          return 1;
-        else
-          p = candidate + 1;
+       if (!is_id_char (candidate[-1]) && !is_id_char (candidate[len]))
+         return 1;
+       else
+         p = candidate + 1;
     }
   return 0;
 #endif /* !defined (UNPROTOIZE) */
@@ -3042,9 +2868,8 @@ other_variable_style_function (ansi_header)
    below.  */
 
 static void
-edit_fn_declaration (def_dec_p, clean_text_p)
-     const def_dec_info *def_dec_p;
-     const char *volatile clean_text_p;
+edit_fn_declaration (const def_dec_info *def_dec_p,
+                    const char *volatile clean_text_p)
 {
   const char *start_formals;
   const char *end_formals;
@@ -3072,7 +2897,7 @@ edit_fn_declaration (def_dec_p, clean_text_p)
   if (other_variable_style_function (definition->ansi_decl))
     {
       if (!quiet_flag)
-        notice ("%s: %d: warning: varargs function declaration not converted\n",
+       notice ("%s: %d: warning: varargs function declaration not converted\n",
                shortpath (NULL, def_dec_p->file->hash_entry->symbol),
                def_dec_p->line);
       return;
@@ -3087,7 +2912,7 @@ edit_fn_declaration (def_dec_p, clean_text_p)
   if (setjmp (source_confusion_recovery))
     {
       restore_pointers ();
-      notice ("%s: declaration of function `%s' not converted\n",
+      notice ("%s: declaration of function '%s' not converted\n",
              pname, function_to_edit);
       return;
     }
@@ -3112,47 +2937,47 @@ edit_fn_declaration (def_dec_p, clean_text_p)
   do
     {
       for (;;)
-        {
-          /* Scan leftwards until we find some character which can be
-             part of an identifier.  */
+       {
+         /* Scan leftwards until we find some character which can be
+            part of an identifier.  */
+
+         while (!is_id_char (*clean_text_p))
+           check_source (--clean_text_p > clean_read_ptr, 0);
 
-          while (!is_id_char (*clean_text_p))
-            check_source (--clean_text_p > clean_read_ptr, 0);
+         /* Scan backwards until we find a char that cannot be part of an
+            identifier.  */
 
-          /* Scan backwards until we find a char that cannot be part of an
-             identifier.  */
+         while (is_id_char (*clean_text_p))
+           check_source (--clean_text_p > clean_read_ptr, 0);
 
-          while (is_id_char (*clean_text_p))
-            check_source (--clean_text_p > clean_read_ptr, 0);
+         /* Having found an "id break", see if the following id is the one
+            that we are looking for.  If so, then exit from this loop.  */
 
-          /* Having found an "id break", see if the following id is the one
-             that we are looking for.  If so, then exit from this loop.  */
+         if (!strncmp (clean_text_p+1, function_to_edit, func_name_len))
+           {
+             char ch = *(clean_text_p + 1 + func_name_len);
 
-          if (!strncmp (clean_text_p+1, function_to_edit, func_name_len))
-            {
-              char ch = *(clean_text_p + 1 + func_name_len);
+             /* Must also check to see that the name in the source text
+                ends where it should (in order to prevent bogus matches
+                on similar but longer identifiers.  */
 
-              /* Must also check to see that the name in the source text
-                 ends where it should (in order to prevent bogus matches
-                 on similar but longer identifiers.  */
+             if (! is_id_char (ch))
+               break;                  /* exit from loop */
+           }
+       }
 
-              if (! is_id_char (ch))
-                break;                 /* exit from loop */
-            }
-        }
-    
       /* We have now found the first perfect match for the function name in
-         our backward search.  This may or may not be the actual function
-         name at the start of the actual function declaration (i.e. we could
-         have easily been mislead).  We will try to avoid getting fooled too
-         often by looking forward for the open paren which should follow the
-         identifier we just found.  We ignore whitespace while hunting.  If
-         the next non-whitespace byte we see is *not* an open left paren,
-         then we must assume that we have been fooled and we start over
-         again accordingly.  Note that there is no guarantee, that even if
-         we do see the open paren, that we are in the right place.
-         Programmers do the strangest things sometimes!  */
-    
+        our backward search.  This may or may not be the actual function
+        name at the start of the actual function declaration (i.e. we could
+        have easily been mislead).  We will try to avoid getting fooled too
+        often by looking forward for the open paren which should follow the
+        identifier we just found.  We ignore whitespace while hunting.  If
+        the next non-whitespace byte we see is *not* an open left paren,
+        then we must assume that we have been fooled and we start over
+        again accordingly.  Note that there is no guarantee, that even if
+        we do see the open paren, that we are in the right place.
+        Programmers do the strangest things sometimes!  */
+
       end_of_fn_name = clean_text_p + strlen (def_dec_p->hash_entry->symbol);
       start_formals = forward_to_next_token_char (end_of_fn_name);
     }
@@ -3173,76 +2998,76 @@ edit_fn_declaration (def_dec_p, clean_text_p)
   for (;;)
     {
       {
-        int depth;
-
-        end_formals = start_formals + 1;
-        depth = 1;
-        for (; depth; check_source (++end_formals < clean_text_limit, 0))
-          {
-            switch (*end_formals)
-              {
-                case '(':
-                  depth++;
-                  break;
-                case ')':
-                  depth--;
-                  break;
-              }
-          }
-        end_formals--;
+       int depth;
+
+       end_formals = start_formals + 1;
+       depth = 1;
+       for (; depth; check_source (++end_formals < clean_text_limit, 0))
+         {
+           switch (*end_formals)
+             {
+             case '(':
+               depth++;
+               break;
+             case ')':
+               depth--;
+               break;
+             }
+         }
+       end_formals--;
       }
 
       /* end_formals now points to the closing right paren of the formals
-         list whose left paren is pointed to by start_formals.  */
-    
+        list whose left paren is pointed to by start_formals.  */
+
       /* Now, if we are protoizing, we insert the new ANSI-style formals list
-         attached to the associated definition of this function.  If however
-         we are unprotoizing, then we simply delete any formals list which
-         may be present.  */
-    
+        attached to the associated definition of this function.  If however
+        we are unprotoizing, then we simply delete any formals list which
+        may be present.  */
+
       output_up_to (start_formals);
 #ifndef UNPROTOIZE
       if (this_f_list_chain_item)
-        {
-          output_string (this_f_list_chain_item->formals_list);
-          this_f_list_chain_item = this_f_list_chain_item->chain_next;
-        }
+       {
+         output_string (this_f_list_chain_item->formals_list);
+         this_f_list_chain_item = this_f_list_chain_item->chain_next;
+       }
       else
-        {
-          if (!quiet_flag)
-            notice ("%s: warning: too many parameter lists in declaration of `%s'\n",
+       {
+         if (!quiet_flag)
+           notice ("%s: warning: too many parameter lists in declaration of '%s'\n",
                    pname, def_dec_p->hash_entry->symbol);
-          check_source (0, end_formals);  /* leave the declaration intact */
-        }
+         check_source (0, end_formals);  /* leave the declaration intact */
+       }
 #endif /* !defined (UNPROTOIZE) */
       clean_read_ptr = end_formals - 1;
 
       /* Now see if it looks like there may be another formals list associated
-         with the function declaration that we are converting (following the
-         formals list that we just converted.  */
+        with the function declaration that we are converting (following the
+        formals list that we just converted.  */
 
       {
-        const char *another_r_paren = forward_to_next_token_char (end_formals);
+       const char *another_r_paren = forward_to_next_token_char (end_formals);
 
-        if ((*another_r_paren != ')')
-            || (*(start_formals = forward_to_next_token_char (another_r_paren)) != '('))
-          {
+       if ((*another_r_paren != ')')
+           || (*(start_formals = forward_to_next_token_char (another_r_paren)) != '('))
+         {
 #ifndef UNPROTOIZE
-            if (this_f_list_chain_item)
-              {
-                if (!quiet_flag)
-                  notice ("\n%s: warning: too few parameter lists in declaration of `%s'\n",
+           if (this_f_list_chain_item)
+             {
+               if (!quiet_flag)
+                 notice ("\n%s: warning: too few parameter lists in declaration of '%s'\n",
                          pname, def_dec_p->hash_entry->symbol);
-                check_source (0, start_formals); /* leave the decl intact */
-              }
+               check_source (0, start_formals); /* leave the decl intact */
+             }
 #endif /* !defined (UNPROTOIZE) */
-            break;
-  
-          }
+           break;
+
+         }
       }
 
       /* There does appear to be yet another formals list, so loop around
-         again, and convert it also.  */
+        again, and convert it also.  */
     }
 }
 
@@ -3253,15 +3078,13 @@ edit_fn_declaration (def_dec_p, clean_text_p)
    list that lies to the left of the one it was originally called to work
    on.  Thus, a whole set gets done in right-to-left order.
 
-   This routine returns non-zero if it thinks that it should not be trying
+   This routine returns nonzero if it thinks that it should not be trying
    to convert this particular function definition (because the name of the
    function doesn't match the one expected).  */
 
 static int
-edit_formals_lists (end_formals, f_list_count, def_dec_p)
-     const char *end_formals;
-     unsigned int f_list_count;
-     const def_dec_info *def_dec_p;
+edit_formals_lists (const char *end_formals, unsigned int f_list_count,
+                   const def_dec_info *def_dec_p)
 {
   const char *start_formals;
   int depth;
@@ -3271,14 +3094,14 @@ edit_formals_lists (end_formals, f_list_count, def_dec_p)
   for (; depth; check_source (--start_formals > clean_read_ptr, 0))
     {
       switch (*start_formals)
-        {
-          case '(':
-            depth--;
-            break;
-          case ')':
-            depth++;
-            break;
-        }
+       {
+       case '(':
+         depth--;
+         break;
+       case ')':
+         depth++;
+         break;
+       }
     }
   start_formals++;
 
@@ -3295,17 +3118,17 @@ edit_formals_lists (end_formals, f_list_count, def_dec_p)
       next_end = start_formals - 1;
       check_source (next_end > clean_read_ptr, 0);
       while (ISSPACE ((const unsigned char)*next_end))
-        check_source (--next_end > clean_read_ptr, 0);
+       check_source (--next_end > clean_read_ptr, 0);
       check_source (*next_end == ')', next_end);
       check_source (--next_end > clean_read_ptr, 0);
       check_source (*next_end == ')', next_end);
       if (edit_formals_lists (next_end, f_list_count, def_dec_p))
-        return 1;
+       return 1;
     }
 
   /* Check that the function name in the header we are working on is the same
      as the one we would expect to find.  If not, issue a warning and return
-     non-zero.  */
+     nonzero.  */
 
   if (f_list_count == 0)
     {
@@ -3316,26 +3139,26 @@ edit_formals_lists (end_formals, f_list_count, def_dec_p)
 
       for (func_name_limit = start_formals-1;
           ISSPACE ((const unsigned char)*func_name_limit); )
-        check_source (--func_name_limit > clean_read_ptr, 0);
+       check_source (--func_name_limit > clean_read_ptr, 0);
 
       for (func_name_start = func_name_limit++;
-           is_id_char (*func_name_start);
-           func_name_start--)
-        check_source (func_name_start > clean_read_ptr, 0);
+          is_id_char (*func_name_start);
+          func_name_start--)
+       check_source (func_name_start > clean_read_ptr, 0);
       func_name_start++;
       func_name_len = func_name_limit - func_name_start;
       if (func_name_len == 0)
-        check_source (0, func_name_start);
+       check_source (0, func_name_start);
       if (func_name_len != strlen (expected)
          || strncmp (func_name_start, expected, func_name_len))
-        {
-          notice ("%s: %d: warning: found `%s' but expected `%s'\n",
+       {
+         notice ("%s: %d: warning: found '%s' but expected '%s'\n",
                  shortpath (NULL, def_dec_p->file->hash_entry->symbol),
                  identify_lineno (func_name_start),
                  dupnstr (func_name_start, func_name_len),
                  expected);
-          return 1;
-        }
+         return 1;
+       }
     }
 
   output_up_to (start_formals);
@@ -3369,8 +3192,7 @@ edit_formals_lists (end_formals, f_list_count, def_dec_p)
    definition header.  */
 
 static const char *
-find_rightmost_formals_list (clean_text_p)
-     const char *clean_text_p;
+find_rightmost_formals_list (const char *clean_text_p)
 {
   const char *end_formals;
 
@@ -3440,32 +3262,32 @@ find_rightmost_formals_list (clean_text_p)
       /* Look leftward and try to find a right-paren.  */
 
       while (*end_formals != ')')
-        {
-          if (ISSPACE ((const unsigned char)*end_formals))
-            while (ISSPACE ((const unsigned char)*end_formals))
-              check_source (--end_formals > clean_read_ptr, 0);
-          else
-            check_source (--end_formals > clean_read_ptr, 0);
-        }
+       {
+         if (ISSPACE ((const unsigned char)*end_formals))
+           while (ISSPACE ((const unsigned char)*end_formals))
+             check_source (--end_formals > clean_read_ptr, 0);
+         else
+           check_source (--end_formals > clean_read_ptr, 0);
+       }
 
       ch = *(l_brace_p = forward_to_next_token_char (end_formals));
 
       /* Since it is possible that we found a right paren before the starting
-         '{' of the body which IS NOT the one at the end of the real K&R
-         formals list (say for instance, we found one embedded inside one of
-         the old K&R formal parameter declarations) we have to check to be
-         sure that this is in fact the right paren that we were looking for.
+        '{' of the body which IS NOT the one at the end of the real K&R
+        formals list (say for instance, we found one embedded inside one of
+        the old K&R formal parameter declarations) we have to check to be
+        sure that this is in fact the right paren that we were looking for.
 
-         The one we were looking for *must* be followed by either a '{' or
-         by an alphabetic character, while others *cannot* validly be followed
-         by such characters.  */
+        The one we were looking for *must* be followed by either a '{' or
+        by an alphabetic character, while others *cannot* validly be followed
+        by such characters.  */
 
-      if ((ch == '{') || ISALPHA ((unsigned char)ch))
-        break;
+      if ((ch == '{') || ISALPHA ((unsigned char) ch))
+       break;
 
       /* At this point, we have found a right paren, but we know that it is
-         not the one we were looking for, so backup one character and keep
-         looking.  */
+        not the one we were looking for, so backup one character and keep
+        looking.  */
 
       check_source (--end_formals > clean_read_ptr, 0);
     }
@@ -3487,9 +3309,7 @@ find_rightmost_formals_list (clean_text_p)
    parameter type checking.  */
 
 static void
-add_local_decl (def_dec_p, clean_text_p)
-     const def_dec_info *def_dec_p;
-     const char *clean_text_p;
+add_local_decl (const def_dec_info *def_dec_p, const char *clean_text_p)
 {
   const char *start_of_block;
   const char *function_to_edit = def_dec_p->hash_entry->symbol;
@@ -3507,7 +3327,7 @@ add_local_decl (def_dec_p, clean_text_p)
   if (setjmp (source_confusion_recovery))
     {
       restore_pointers ();
-      notice ("%s: local declaration for function `%s' not inserted\n",
+      notice ("%s: local declaration for function '%s' not inserted\n",
              pname, function_to_edit);
       return;
     }
@@ -3534,9 +3354,9 @@ add_local_decl (def_dec_p, clean_text_p)
   if (*start_of_block != '{')
     {
       if (!quiet_flag)
-        notice ("\n%s: %d: warning: can't add declaration of `%s' into macro call\n",
-          def_dec_p->file->hash_entry->symbol, def_dec_p->line, 
-          def_dec_p->hash_entry->symbol);
+       notice ("\n%s: %d: warning: can't add declaration of '%s' into macro call\n",
+         def_dec_p->file->hash_entry->symbol, def_dec_p->line,
+         def_dec_p->hash_entry->symbol);
       return;
     }
 
@@ -3563,18 +3383,18 @@ add_local_decl (def_dec_p, clean_text_p)
        we just found.  */
 
     output_up_to (ep);
-  
+
     /* Now we go ahead and insert the new declaration at this point.
 
        If the definition of the given function is in the same file that we
        are currently editing, and if its full ANSI declaration normally
        would start with the keyword `extern', suppress the `extern'.  */
-  
+
     {
       const char *decl = def_dec_p->definition->ansi_decl;
-  
+
       if ((*decl == 'e') && (def_dec_p->file == def_dec_p->definition->file))
-        decl += 7;
+       decl += 7;
       output_string (decl);
     }
 
@@ -3594,9 +3414,7 @@ add_local_decl (def_dec_p, clean_text_p)
    and then insert the new explicit declaration at that point in the file.  */
 
 static void
-add_global_decls (file_p, clean_text_p)
-     const file_info *file_p;
-     const char *clean_text_p;
+add_global_decls (const file_info *file_p, const char *clean_text_p)
 {
   const def_dec_info *dd_p;
   const char *scan_p;
@@ -3608,7 +3426,7 @@ add_global_decls (file_p, clean_text_p)
   if (setjmp (source_confusion_recovery))
     {
       restore_pointers ();
-      notice ("%s: global declarations for file `%s' not inserted\n",
+      notice ("%s: global declarations for file '%s' not inserted\n",
              pname, shortpath (NULL, file_p->hash_entry->symbol));
       return;
     }
@@ -3622,10 +3440,10 @@ add_global_decls (file_p, clean_text_p)
   for (;; --scan_p)
     {
       if (scan_p < clean_text_base)
-        break;
+       break;
       check_source (scan_p > clean_read_ptr, 0);
       if (*scan_p == ';')
-        break;
+       break;
     }
 
   /* scan_p now points either to a semicolon, or to just before the start
@@ -3645,28 +3463,28 @@ add_global_decls (file_p, clean_text_p)
   /* Now write out full prototypes for all of the things that had been
      implicitly declared in this file (but only those for which we were
      actually able to find unique matching definitions).  Avoid duplicates
-     by marking things that we write out as we go.   */
+     by marking things that we write out as we go.  */
 
   {
     int some_decls_added = 0;
-  
+
     for (dd_p = file_p->defs_decs; dd_p; dd_p = dd_p->next_in_file)
       if (dd_p->is_implicit && dd_p->definition && !dd_p->definition->written)
-        {
-          const char *decl = dd_p->definition->ansi_decl;
-  
-          /* If the function for which we are inserting a declaration is
-             actually defined later in the same file, then suppress the
-             leading `extern' keyword (if there is one).  */
-  
-          if (*decl == 'e' && (dd_p->file == dd_p->definition->file))
-            decl += 7;
-  
-          output_string ("\n");
-          output_string (decl);
-          some_decls_added = 1;
-          ((NONCONST def_dec_info *) dd_p->definition)->written = 1;
-        }
+       {
+         const char *decl = dd_p->definition->ansi_decl;
+
+         /* If the function for which we are inserting a declaration is
+            actually defined later in the same file, then suppress the
+            leading `extern' keyword (if there is one).  */
+
+         if (*decl == 'e' && (dd_p->file == dd_p->definition->file))
+           decl += 7;
+
+         output_string ("\n");
+         output_string (decl);
+         some_decls_added = 1;
+         ((NONCONST def_dec_info *) dd_p->definition)->written = 1;
+       }
     if (some_decls_added)
       output_string ("\n\n");
   }
@@ -3685,9 +3503,7 @@ add_global_decls (file_p, clean_text_p)
    separate routine above.  */
 
 static void
-edit_fn_definition (def_dec_p, clean_text_p)
-     const def_dec_info *def_dec_p;
-     const char *clean_text_p;
+edit_fn_definition (const def_dec_info *def_dec_p, const char *clean_text_p)
 {
   const char *end_formals;
   const char *function_to_edit = def_dec_p->hash_entry->symbol;
@@ -3699,7 +3515,7 @@ edit_fn_definition (def_dec_p, clean_text_p)
   if (setjmp (source_confusion_recovery))
     {
       restore_pointers ();
-      notice ("%s: definition of function `%s' not converted\n",
+      notice ("%s: definition of function '%s' not converted\n",
              pname, function_to_edit);
       return;
     }
@@ -3714,13 +3530,13 @@ edit_fn_definition (def_dec_p, clean_text_p)
      function with a variable number of arguments, and if the way it does
      that is different from that way we would like it (i.e. varargs vs.
      stdarg) then issue a warning and leave the header unconverted.  */
-     
+
   if (other_variable_style_function (def_dec_p->ansi_decl))
     {
       if (!quiet_flag)
-        notice ("%s: %d: warning: definition of %s not converted\n",
+       notice ("%s: %d: warning: definition of %s not converted\n",
                shortpath (NULL, def_dec_p->file->hash_entry->symbol),
-               identify_lineno (end_formals), 
+               identify_lineno (end_formals),
                other_var_style);
       output_up_to (end_formals);
       return;
@@ -3729,7 +3545,7 @@ edit_fn_definition (def_dec_p, clean_text_p)
   if (edit_formals_lists (end_formals, def_dec_p->f_list_count, def_dec_p))
     {
       restore_pointers ();
-      notice ("%s: definition of function `%s' not converted\n",
+      notice ("%s: definition of function '%s' not converted\n",
              pname, function_to_edit);
       return;
     }
@@ -3753,11 +3569,11 @@ edit_fn_definition (def_dec_p, clean_text_p)
     limit_p = decl_p + strlen (decl_p);
     for (;decl_p < limit_p; decl_p = semicolon_p + 2)
       {
-        for (semicolon_p = decl_p; *semicolon_p != ';'; semicolon_p++)
-          continue;
-        output_string ("\n");
-        output_string (indent_string);
-        output_bytes (decl_p, (size_t) ((semicolon_p + 1) - decl_p));
+       for (semicolon_p = decl_p; *semicolon_p != ';'; semicolon_p++)
+         continue;
+       output_string ("\n");
+       output_string (indent_string);
+       output_bytes (decl_p, (size_t) ((semicolon_p + 1) - decl_p));
       }
 
     /* If there are no newlines between the end of the formals list and the
@@ -3765,12 +3581,12 @@ edit_fn_definition (def_dec_p, clean_text_p)
 
     for (scan_p = end_formals+1; *scan_p != '{'; )
       {
-        if (*scan_p == '\n')
-          {
-            had_newlines = 1;
-            break;
-          }
-        check_source (++scan_p < clean_text_limit, 0);
+       if (*scan_p == '\n')
+         {
+           had_newlines = 1;
+           break;
+         }
+       check_source (++scan_p < clean_text_limit, 0);
       }
     if (!had_newlines)
       output_string ("\n");
@@ -3801,24 +3617,24 @@ edit_fn_definition (def_dec_p, clean_text_p)
     scan_orig = end_formals_orig + 1;
     for (; scan < start_body; scan++, scan_orig++)
       {
-        if (*scan == *scan_orig)
-          {
-            have_newlines |= (*scan_orig == '\n');
-            /* Leave identical whitespace alone.  */
-            if (!ISSPACE ((const unsigned char)*scan_orig))
-              *((NONCONST char *)scan_orig) = ' '; /* identical - so whiteout */
-          }
-        else
-          have_flotsam = 1;
+       if (*scan == *scan_orig)
+         {
+           have_newlines |= (*scan_orig == '\n');
+           /* Leave identical whitespace alone.  */
+           if (!ISSPACE ((const unsigned char)*scan_orig))
+             *((NONCONST char *) scan_orig) = ' '; /* identical - so whiteout */
+         }
+       else
+         have_flotsam = 1;
       }
     if (have_flotsam)
       output_bytes (end_formals_orig + 1,
                    (size_t) (start_body_orig - end_formals_orig) - 1);
     else
       if (have_newlines)
-        output_string ("\n");
+       output_string ("\n");
       else
-        output_string (" ");
+       output_string (" ");
     clean_read_ptr = start_body - 1;
   }
 #endif /* !defined (UNPROTOIZE) */
@@ -3829,9 +3645,7 @@ edit_fn_definition (def_dec_p, clean_text_p)
    into whitespace.  Also, whiteout string and character literals.  */
 
 static void
-do_cleaning (new_clean_text_base, new_clean_text_limit)
-     char *new_clean_text_base;
-     const char *new_clean_text_limit;
+do_cleaning (char *new_clean_text_base, const char *new_clean_text_limit)
 {
   char *scan_p;
   int non_whitespace_since_newline = 0;
@@ -3839,94 +3653,94 @@ do_cleaning (new_clean_text_base, new_clean_text_limit)
   for (scan_p = new_clean_text_base; scan_p < new_clean_text_limit; scan_p++)
     {
       switch (*scan_p)
-        {
-          case '/':                    /* Handle comments.  */
-            if (scan_p[1] != '*')
-              goto regular;
-            non_whitespace_since_newline = 1;
-            scan_p[0] = ' ';
-            scan_p[1] = ' ';
-            scan_p += 2;
-            while (scan_p[1] != '/' || scan_p[0] != '*')
-              {
-                if (!ISSPACE ((const unsigned char)*scan_p))
-                  *scan_p = ' ';
-                if (++scan_p >= new_clean_text_limit)
-                  abort ();
-              }
-            *scan_p++ = ' ';
-            *scan_p = ' ';
-            break;
-
-          case '#':                    /* Handle pp directives.  */
-            if (non_whitespace_since_newline)
-              goto regular;
-            *scan_p = ' ';
-            while (scan_p[1] != '\n' || scan_p[0] == '\\')
-              {
-                if (!ISSPACE ((const unsigned char)*scan_p))
-                  *scan_p = ' ';
-                if (++scan_p >= new_clean_text_limit)
-                  abort ();
-              }
-            *scan_p++ = ' ';
-            break;
-
-          case '\'':                   /* Handle character literals.  */
-            non_whitespace_since_newline = 1;
-            while (scan_p[1] != '\'' || scan_p[0] == '\\')
-              {
-                if (scan_p[0] == '\\'
-                   && !ISSPACE ((const unsigned char)scan_p[1]))
-                  scan_p[1] = ' ';
-                if (!ISSPACE ((const unsigned char)*scan_p))
-                  *scan_p = ' ';
-                if (++scan_p >= new_clean_text_limit)
-                  abort ();
-              }
-            *scan_p++ = ' ';
-            break;
-
-          case '"':                    /* Handle string literals.  */
-            non_whitespace_since_newline = 1;
-            while (scan_p[1] != '"' || scan_p[0] == '\\')
-              {
-                if (scan_p[0] == '\\'
-                   && !ISSPACE ((const unsigned char)scan_p[1]))
-                  scan_p[1] = ' ';
-                if (!ISSPACE ((const unsigned char)*scan_p))
-                  *scan_p = ' ';
-                if (++scan_p >= new_clean_text_limit)
-                  abort ();
-              }
-           if (!ISSPACE ((const unsigned char)*scan_p))
-             *scan_p = ' ';
-           scan_p++;
-            break;
-
-          case '\\':                   /* Handle line continuations.  */
-            if (scan_p[1] != '\n')
-              goto regular;
-            *scan_p = ' ';
-            break;
-
-          case '\n':
-            non_whitespace_since_newline = 0;  /* Reset.  */
-            break;
-
-          case ' ':
-          case '\v':
-          case '\t':
-          case '\r':
-          case '\f':
-          case '\b':
-            break;             /* Whitespace characters.  */
-
-          default:
+       {
+       case '/':                       /* Handle comments.  */
+         if (scan_p[1] != '*')
+           goto regular;
+         non_whitespace_since_newline = 1;
+         scan_p[0] = ' ';
+         scan_p[1] = ' ';
+         scan_p += 2;
+         while (scan_p[1] != '/' || scan_p[0] != '*')
+           {
+             if (!ISSPACE ((const unsigned char)*scan_p))
+               *scan_p = ' ';
+             ++scan_p;
+             gcc_assert (scan_p < new_clean_text_limit);
+           }
+         *scan_p++ = ' ';
+         *scan_p = ' ';
+         break;
+
+       case '#':                       /* Handle pp directives.  */
+         if (non_whitespace_since_newline)
+           goto regular;
+         *scan_p = ' ';
+         while (scan_p[1] != '\n' || scan_p[0] == '\\')
+           {
+             if (!ISSPACE ((const unsigned char)*scan_p))
+               *scan_p = ' ';
+             ++scan_p;
+             gcc_assert (scan_p < new_clean_text_limit);
+           }
+         *scan_p++ = ' ';
+         break;
+
+       case '\'':                      /* Handle character literals.  */
+         non_whitespace_since_newline = 1;
+         while (scan_p[1] != '\'' || scan_p[0] == '\\')
+           {
+             if (scan_p[0] == '\\'
+                 && !ISSPACE ((const unsigned char) scan_p[1]))
+               scan_p[1] = ' ';
+             if (!ISSPACE ((const unsigned char)*scan_p))
+               *scan_p = ' ';
+             ++scan_p;
+             gcc_assert (scan_p < new_clean_text_limit);
+           }
+         *scan_p++ = ' ';
+         break;
+
+       case '"':                       /* Handle string literals.  */
+         non_whitespace_since_newline = 1;
+         while (scan_p[1] != '"' || scan_p[0] == '\\')
+           {
+             if (scan_p[0] == '\\'
+                 && !ISSPACE ((const unsigned char) scan_p[1]))
+               scan_p[1] = ' ';
+             if (!ISSPACE ((const unsigned char)*scan_p))
+               *scan_p = ' ';
+             ++scan_p;
+             gcc_assert (scan_p < new_clean_text_limit);
+           }
+         if (!ISSPACE ((const unsigned char)*scan_p))
+           *scan_p = ' ';
+         scan_p++;
+         break;
+
+       case '\\':                      /* Handle line continuations.  */
+         if (scan_p[1] != '\n')
+           goto regular;
+         *scan_p = ' ';
+         break;
+
+       case '\n':
+         non_whitespace_since_newline = 0;     /* Reset.  */
+         break;
+
+       case ' ':
+       case '\v':
+       case '\t':
+       case '\r':
+       case '\f':
+       case '\b':
+         break;                /* Whitespace characters.  */
+
+       default:
 regular:
-            non_whitespace_since_newline = 1;
-            break;
-        }
+         non_whitespace_since_newline = 1;
+         break;
+       }
     }
 }
 
@@ -3935,8 +3749,7 @@ regular:
    and return a pointer to it.  */
 
 static const char *
-careful_find_l_paren (p)
-     const char *p;
+careful_find_l_paren (const char *p)
 {
   const char *q;
   int paren_depth;
@@ -3944,14 +3757,14 @@ careful_find_l_paren (p)
   for (paren_depth = 1, q = p-1; paren_depth; check_source (--q >= clean_text_base, 0))
     {
       switch (*q)
-        {
-          case ')':
-            paren_depth++;
-            break;
-          case '(':
-            paren_depth--;
-            break;
-        }
+       {
+       case ')':
+         paren_depth++;
+         break;
+       case '(':
+         paren_depth--;
+         break;
+       }
     }
   return ++q;
 }
@@ -3974,8 +3787,7 @@ careful_find_l_paren (p)
    I will probably try to do this in a later version though.  */
 
 static void
-scan_for_missed_items (file_p)
-     const file_info *file_p;
+scan_for_missed_items (const file_info *file_p)
 {
   static const char *scan_p;
   const char *limit = clean_text_limit - 3;
@@ -3986,53 +3798,53 @@ scan_for_missed_items (file_p)
   for (scan_p = clean_text_base; scan_p < limit; scan_p++)
     {
       if (*scan_p == ')')
-        {
-          static const char *last_r_paren;
-          const char *ahead_p;
+       {
+         static const char *last_r_paren;
+         const char *ahead_p;
 
-          last_r_paren = scan_p;
+         last_r_paren = scan_p;
 
-          for (ahead_p = scan_p + 1; ISSPACE ((const unsigned char)*ahead_p); )
-            check_source (++ahead_p < limit, limit);
+         for (ahead_p = scan_p + 1; ISSPACE ((const unsigned char)*ahead_p); )
+           check_source (++ahead_p < limit, limit);
 
-          scan_p = ahead_p - 1;
+         scan_p = ahead_p - 1;
 
-          if (ISALPHA ((const unsigned char)*ahead_p) || *ahead_p == '{')
-            {
-              const char *last_l_paren;
-              const int lineno = identify_lineno (ahead_p);
+         if (ISALPHA ((const unsigned char)*ahead_p) || *ahead_p == '{')
+           {
+             const char *last_l_paren;
+             const int lineno = identify_lineno (ahead_p);
 
-              if (setjmp (source_confusion_recovery))
-                continue;
+             if (setjmp (source_confusion_recovery))
+               continue;
 
-              /* We know we have a function definition header.  Now skip
-                 leftwards over all of its associated formals lists.  */
+             /* We know we have a function definition header.  Now skip
+                leftwards over all of its associated formals lists.  */
 
-              do
-                {
-                  last_l_paren = careful_find_l_paren (last_r_paren);
-                  for (last_r_paren = last_l_paren-1;
+             do
+               {
+                 last_l_paren = careful_find_l_paren (last_r_paren);
+                 for (last_r_paren = last_l_paren-1;
                       ISSPACE ((const unsigned char)*last_r_paren); )
-                    check_source (--last_r_paren >= backup_limit, backup_limit);
-                }
-              while (*last_r_paren == ')');
-
-              if (is_id_char (*last_r_paren))
-                {
-                  const char *id_limit = last_r_paren + 1;
-                  const char *id_start;
-                  size_t id_length;
-                  const def_dec_info *dd_p;
-
-                  for (id_start = id_limit-1; is_id_char (*id_start); )
-                    check_source (--id_start >= backup_limit, backup_limit);
-                  id_start++;
-                  backup_limit = id_start;
-                  if ((id_length = (size_t) (id_limit - id_start)) == 0)
-                    goto not_missed;
+                   check_source (--last_r_paren >= backup_limit, backup_limit);
+               }
+             while (*last_r_paren == ')');
+
+             if (is_id_char (*last_r_paren))
+               {
+                 const char *id_limit = last_r_paren + 1;
+                 const char *id_start;
+                 size_t id_length;
+                 const def_dec_info *dd_p;
+
+                 for (id_start = id_limit-1; is_id_char (*id_start); )
+                   check_source (--id_start >= backup_limit, backup_limit);
+                 id_start++;
+                 backup_limit = id_start;
+                 if ((id_length = (size_t) (id_limit - id_start)) == 0)
+                   goto not_missed;
 
                  {
-                   char *func_name = (char *) alloca (id_length + 1);
+                   char *func_name = alloca (id_length + 1);
                    static const char * const stmt_keywords[]
                      = { "if", "else", "do", "while", "for", "switch", "case", "return", 0 };
                    const char * const *stmt_keyword;
@@ -4048,7 +3860,7 @@ scan_for_missed_items (file_p)
                        goto not_missed;
 
 #if 0
-                   notice ("%s: found definition of `%s' at %s(%d)\n",
+                   notice ("%s: found definition of '%s' at %s(%d)\n",
                            pname,
                            func_name,
                            shortpath (NULL, file_p->hash_entry->symbol),
@@ -4064,16 +3876,16 @@ scan_for_missed_items (file_p)
                    /* If we make it here, then we did not know about this
                       function definition.  */
 
-                   notice ("%s: %d: warning: `%s' excluded by preprocessing\n",
+                   notice ("%s: %d: warning: '%s' excluded by preprocessing\n",
                            shortpath (NULL, file_p->hash_entry->symbol),
                            identify_lineno (id_start), func_name);
                    notice ("%s: function definition not converted\n",
                            pname);
                  }
                not_missed: ;
-                }
-            }
-        }
+               }
+           }
+       }
     }
 }
 
@@ -4088,10 +3900,9 @@ scan_for_missed_items (file_p)
 
    Note that the trick of making a copy of the original sans comments &
    preprocessing directives make the editing a whole lot easier.  */
-   
+
 static void
-edit_file (hp)
-     const hash_table_entry *hp;
+edit_file (const hash_table_entry *hp)
 {
   struct stat stat_buf;
   const file_info *file_p = hp->fip;
@@ -4119,14 +3930,14 @@ edit_file (hp)
     {
       if (!quiet_flag
 #ifdef UNPROTOIZE
-          /* Don't even mention "system" include files unless we are
-             protoizing.  If we are protoizing, we mention these as a
-             gentle way of prodding the user to convert his "system"
-             include files to prototype format.  */
-          && !in_system_include_dir (convert_filename)
+         /* Don't even mention "system" include files unless we are
+            protoizing.  If we are protoizing, we mention these as a
+            gentle way of prodding the user to convert his "system"
+            include files to prototype format.  */
+         && !in_system_include_dir (convert_filename)
 #endif /* defined (UNPROTOIZE) */
-          )
-        notice ("%s: `%s' not converted\n",
+         )
+       notice ("%s: '%s' not converted\n",
                pname, shortpath (NULL, convert_filename));
       return;
     }
@@ -4134,10 +3945,10 @@ edit_file (hp)
   /* Let the user know what we are up to.  */
 
   if (nochange_flag)
-    notice ("%s: would convert file `%s'\n",
+    notice ("%s: would convert file '%s'\n",
            pname, shortpath (NULL, convert_filename));
   else
-    notice ("%s: converting file `%s'\n",
+    notice ("%s: converting file '%s'\n",
            pname, shortpath (NULL, convert_filename));
   fflush (stderr);
 
@@ -4147,7 +3958,7 @@ edit_file (hp)
   if (stat (convert_filename, &stat_buf) == -1)
     {
       int errno_val = errno;
-      notice ("%s: can't get status for file `%s': %s\n",
+      notice ("%s: can't get status for file '%s': %s\n",
              pname, shortpath (NULL, convert_filename),
              xstrerror (errno_val));
       return;
@@ -4156,12 +3967,12 @@ edit_file (hp)
 
   /* Allocate a buffer to hold the original text.  */
 
-  orig_text_base = new_orig_text_base = (char *) xmalloc (orig_size + 2);
+  orig_text_base = new_orig_text_base = xmalloc (orig_size + 2);
   orig_text_limit = new_orig_text_limit = new_orig_text_base + orig_size;
 
   /* Allocate a buffer to hold the cleaned-up version of the original text.  */
 
-  clean_text_base = new_clean_text_base = (char *) xmalloc (orig_size + 2);
+  clean_text_base = new_clean_text_base = xmalloc (orig_size + 2);
   clean_text_limit = new_clean_text_limit = new_clean_text_base + orig_size;
   clean_read_ptr = clean_text_base - 1;
 
@@ -4171,7 +3982,7 @@ edit_file (hp)
      buffer can be expanded later as needed.  */
 
   repl_size = orig_size + (orig_size >> 2) + 4096;
-  repl_text_base = (char *) xmalloc (repl_size + 2);
+  repl_text_base = xmalloc (repl_size + 2);
   repl_text_limit = repl_text_base + repl_size - 1;
   repl_write_ptr = repl_text_base - 1;
 
@@ -4189,10 +4000,10 @@ edit_file (hp)
     if ((input_file = open (convert_filename, fd_flags, 0444)) == -1)
       {
        int errno_val = errno;
-        notice ("%s: can't open file `%s' for reading: %s\n",
+       notice ("%s: can't open file '%s' for reading: %s\n",
                pname, shortpath (NULL, convert_filename),
                xstrerror (errno_val));
-        return;
+       return;
       }
 
     /* Read the entire original source text file into the original text buffer
@@ -4203,11 +4014,11 @@ edit_file (hp)
        (int) orig_size)
       {
        int errno_val = errno;
-        close (input_file);
-        notice ("\n%s: error reading input file `%s': %s\n",
+       close (input_file);
+       notice ("\n%s: error reading input file '%s': %s\n",
                pname, shortpath (NULL, convert_filename),
                xstrerror (errno_val));
-        return;
+       return;
       }
 
     close (input_file);
@@ -4229,25 +4040,25 @@ edit_file (hp)
   {
     int clean_file;
     size_t clean_size = orig_text_limit - orig_text_base;
-    char *const clean_filename = (char *) alloca (strlen (convert_filename) + 6 + 1);
+    char *const clean_filename = alloca (strlen (convert_filename) + 6 + 1);
 
     /* Open (and create) the clean file.  */
-  
+
     strcpy (clean_filename, convert_filename);
     strcat (clean_filename, ".clean");
     if ((clean_file = creat (clean_filename, 0666)) == -1)
       {
        int errno_val = errno;
-        notice ("%s: can't create/open clean file `%s': %s\n",
+       notice ("%s: can't create/open clean file '%s': %s\n",
                pname, shortpath (NULL, clean_filename),
                xstrerror (errno_val));
-        return;
+       return;
       }
-  
+
     /* Write the clean file.  */
-  
+
     safe_write (clean_file, new_clean_text_base, clean_size, clean_filename);
-  
+
     close (clean_file);
   }
 #endif /* 0 */
@@ -4273,39 +4084,39 @@ edit_file (hp)
     def_dec_p = file_p->defs_decs;
     for (; def_dec_p; def_dec_p = def_dec_p->next_in_file)
       {
-        const char *clean_text_p = seek_to_line (def_dec_p->line);
-  
-        /* clean_text_p now points to the first character of the line which
-           contains the `terminator' for the declaration or definition that
-           we are about to process.  */
-  
+       const char *clean_text_p = seek_to_line (def_dec_p->line);
+
+       /* clean_text_p now points to the first character of the line which
+          contains the `terminator' for the declaration or definition that
+          we are about to process.  */
+
 #ifndef UNPROTOIZE
-  
-        if (global_flag && def_dec_p->is_func_def && first_definition_in_file)
-          {
-            add_global_decls (def_dec_p->file, clean_text_p);
-            first_definition_in_file = 0;
-          }
 
-        /* Don't edit this item if it is already in prototype format or if it
-           is a function declaration and we have found no corresponding
-           definition.  */
+       if (global_flag && def_dec_p->is_func_def && first_definition_in_file)
+         {
+           add_global_decls (def_dec_p->file, clean_text_p);
+           first_definition_in_file = 0;
+         }
 
-        if (def_dec_p->prototyped
-         || (!def_dec_p->is_func_def && !def_dec_p->definition))
-          continue;
+       /* Don't edit this item if it is already in prototype format or if it
+          is a function declaration and we have found no corresponding
+          definition.  */
+
+       if (def_dec_p->prototyped
+           || (!def_dec_p->is_func_def && !def_dec_p->definition))
+         continue;
 
 #endif /* !defined (UNPROTOIZE) */
 
-        if (def_dec_p->is_func_def)
-          edit_fn_definition (def_dec_p, clean_text_p);
-        else
+       if (def_dec_p->is_func_def)
+         edit_fn_definition (def_dec_p, clean_text_p);
+       else
 #ifndef UNPROTOIZE
-       if (def_dec_p->is_implicit)
-         add_local_decl (def_dec_p, clean_text_p);
-       else
+       if (def_dec_p->is_implicit)
+         add_local_decl (def_dec_p, clean_text_p);
+       else
 #endif /* !defined (UNPROTOIZE) */
-            edit_fn_declaration (def_dec_p, clean_text_p);
+         edit_fn_declaration (def_dec_p, clean_text_p);
       }
   }
 
@@ -4329,12 +4140,12 @@ edit_file (hp)
   if (!nosave_flag)
     {
       char *new_filename
-       = (char *) xmalloc (strlen (convert_filename) + strlen (save_suffix) + 2);
-  
+       = xmalloc (strlen (convert_filename) + strlen (save_suffix) + 2);
+
       strcpy (new_filename, convert_filename);
 #ifdef __MSDOS__
       /* MSDOS filenames are restricted to 8.3 format, so we save `foo.c'
-         as `foo.<save_suffix>'.  */
+        as `foo.<save_suffix>'.  */
       new_filename[(strlen (convert_filename) - 1] = '\0';
 #endif
       strcat (new_filename, save_suffix);
@@ -4343,21 +4154,21 @@ edit_file (hp)
       if (access (new_filename, F_OK) == 0)
        {
          if (!quiet_flag)
-           notice ("%s: warning: file `%s' already saved in `%s'\n",
+           notice ("%s: warning: file '%s' already saved in '%s'\n",
                    pname,
                    shortpath (NULL, convert_filename),
                    shortpath (NULL, new_filename));
        }
       else if (rename (convert_filename, new_filename) == -1)
-        {
+       {
          int errno_val = errno;
-         notice ("%s: can't link file `%s' to `%s': %s\n",
+         notice ("%s: can't link file '%s' to '%s': %s\n",
                  pname,
                  shortpath (NULL, convert_filename),
                  shortpath (NULL, new_filename),
                  xstrerror (errno_val));
          return;
-        }
+       }
     }
 
   if (unlink (convert_filename) == -1)
@@ -4365,8 +4176,8 @@ edit_file (hp)
       int errno_val = errno;
       /* The file may have already been renamed.  */
       if (errno_val != ENOENT)
-        {
-         notice ("%s: can't delete file `%s': %s\n",
+       {
+         notice ("%s: can't delete file '%s': %s\n",
                  pname, shortpath (NULL, convert_filename),
                  xstrerror (errno_val));
          return;
@@ -4377,28 +4188,28 @@ edit_file (hp)
     int output_file;
 
     /* Open (and create) the output file.  */
-  
+
     if ((output_file = creat (convert_filename, 0666)) == -1)
       {
        int errno_val = errno;
-        notice ("%s: can't create/open output file `%s': %s\n",
+       notice ("%s: can't create/open output file '%s': %s\n",
                pname, shortpath (NULL, convert_filename),
                xstrerror (errno_val));
-        return;
+       return;
       }
 #ifdef O_BINARY
     /* Use binary mode to avoid changing the existing EOL character.  */
     setmode (output_file, O_BINARY);
 #endif
-  
+
     /* Write the output file.  */
-  
+
     {
       unsigned int out_size = (repl_write_ptr + 1) - repl_text_base;
-  
+
       safe_write (output_file, repl_text_base, out_size, convert_filename);
     }
-  
+
     close (output_file);
   }
 
@@ -4414,7 +4225,7 @@ edit_file (hp)
   if (chmod (convert_filename, stat_buf.st_mode) == -1)
     {
       int errno_val = errno;
-      notice ("%s: can't change mode of file `%s': %s\n",
+      notice ("%s: can't change mode of file '%s': %s\n",
              pname, shortpath (NULL, convert_filename),
              xstrerror (errno_val));
     }
@@ -4430,7 +4241,7 @@ edit_file (hp)
    in the command line.  */
 
 static void
-do_processing ()
+do_processing (void)
 {
   const char * const *base_pp;
   const char * const * const end_pps
@@ -4456,22 +4267,22 @@ do_processing ()
   if (nondefault_syscalls_dir)
     {
       syscalls_absolute_filename
-        = (char *) xmalloc (strlen (nondefault_syscalls_dir) + 1
-                            + sizeof (syscalls_filename));
+       = xmalloc (strlen (nondefault_syscalls_dir) + 1
+                  + sizeof (syscalls_filename));
       strcpy (syscalls_absolute_filename, nondefault_syscalls_dir);
     }
   else
     {
-      GET_ENV_PATH_LIST (default_syscalls_dir, "GCC_EXEC_PREFIX");
+      GET_ENVIRONMENT (default_syscalls_dir, "GCC_EXEC_PREFIX");
       if (!default_syscalls_dir)
        {
          default_syscalls_dir = standard_exec_prefix;
        }
       syscalls_absolute_filename
-        = (char *) xmalloc (strlen (default_syscalls_dir) + 0
-                           + strlen (target_machine) + 1
-                           + strlen (target_version) + 1
-                            + sizeof (syscalls_filename));
+       = xmalloc (strlen (default_syscalls_dir) + 0
+                  + strlen (target_machine) + 1
+                  + strlen (target_version) + 1
+                  + sizeof (syscalls_filename));
       strcpy (syscalls_absolute_filename, default_syscalls_dir);
       strcat (syscalls_absolute_filename, target_machine);
       strcat (syscalls_absolute_filename, "/");
@@ -4486,7 +4297,7 @@ do_processing ()
       *(syscalls_absolute_filename + syscalls_len) = '\0';
     }
   strcat (syscalls_absolute_filename, syscalls_filename);
-  
+
   /* Call process_aux_info_file in such a way that it does not try to
      delete the SYSCALLS aux_info file.  */
 
@@ -4531,7 +4342,7 @@ do_processing ()
 #endif /* !defined (UNPROTOIZE) */
 }
 \f
-static struct option longopts[] =
+static const struct option longopts[] =
 {
   {"version", 0, 0, 'V'},
   {"file_name", 0, 0, 'p'},
@@ -4555,12 +4366,10 @@ static struct option longopts[] =
   {0, 0, 0, 0}
 };
 
-extern int main PARAMS ((int, char **const));
+extern int main (int, char **const);
 
 int
-main (argc, argv)
-     int argc;
-     char **const argv;
+main (int argc, char **const argv)
 {
   int longind;
   int c;
@@ -4584,18 +4393,10 @@ main (argc, argv)
   signal (SIGCHLD, SIG_DFL);
 #endif
 
-/* LC_CTYPE determines the character set used by the terminal so it has be set
-   to output messages correctly.  */
+  /* Unlock the stdio streams.  */
+  unlock_std_streams ();
 
-#ifdef HAVE_LC_MESSAGES
-  setlocale (LC_CTYPE, "");
-  setlocale (LC_MESSAGES, "");
-#else
-  setlocale (LC_ALL, "");
-#endif
-
-  (void) bindtextdomain (PACKAGE, localedir);
-  (void) textdomain (PACKAGE);
+  gcc_init_libintl ();
 
   cwd_buffer = getpwd ();
   if (!cwd_buffer)
@@ -4630,7 +4431,7 @@ main (argc, argv)
        case 'x':
          exclude_list = string_list_cons (optarg, exclude_list);
          break;
-           
+
        case 'v':
        case 'V':
          version_flag = 1;
@@ -4678,7 +4479,7 @@ main (argc, argv)
          usage ();
        }
     }
+
   /* Set up compile_params based on -p and -c options.  */
   munge_compile_params (params);
 
@@ -4687,7 +4488,7 @@ main (argc, argv)
   /* Now actually make a list of the base source filenames.  */
 
   base_source_filenames
-    = (const char **) xmalloc ((n_base_source_files + 1) * sizeof (char *));
+    = xmalloc ((n_base_source_files + 1) * sizeof (char *));
   n_base_source_files = 0;
   for (; optind < argc; optind++)
     {
@@ -4711,8 +4512,7 @@ main (argc, argv)
   {
     const char *cp;
 
-    for (cp = varargs_style_indicator;
-        ISALNUM ((const unsigned char)*cp) || *cp == '_'; cp++)
+    for (cp = varargs_style_indicator; ISIDNUM (*cp); cp++)
       continue;
     if (*cp != 0)
       varargs_style_indicator = savestring (varargs_style_indicator,
@@ -4725,7 +4525,7 @@ main (argc, argv)
   else
     {
       if (version_flag)
-        fprintf (stderr, "%s: %s\n", pname, version_string);
+       fprintf (stderr, "%s: %s\n", pname, version_string);
       do_processing ();
     }