diff options
author | mrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-05-06 23:05:54 +0000 |
---|---|---|
committer | mrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-05-06 23:05:54 +0000 |
commit | 0bc644e0031a247a30ddbe64fb50b94fdd4e19fd (patch) | |
tree | 5ce87329cf1055017d0bd705ecac06be33f23764 /gcc/protoize.c | |
parent | 37808e3a06df2a78362bff6389cc0b2e2812f490 (diff) | |
download | gcc-0bc644e0031a247a30ddbe64fb50b94fdd4e19fd.tar.gz |
reformat a little to match GNU coding standards.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@14024 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/protoize.c')
-rw-r--r-- | gcc/protoize.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/protoize.c b/gcc/protoize.c index e94b79c0f7a..d38666406fd 100644 --- a/gcc/protoize.c +++ b/gcc/protoize.c @@ -1788,8 +1788,8 @@ 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 + = (f_list_chain_item *) xmalloc (sizeof (f_list_chain_item)); cip->formals_list = dupnstr (left_paren_p + 1, (size_t) (p - (left_paren_p+1))); @@ -4362,8 +4362,8 @@ edit_file (hp) if (!nosave_flag) { - char *new_filename = - (char *) xmalloc (strlen (convert_filename) + strlen (save_suffix) + 2); + char *new_filename + = (char *) xmalloc (strlen (convert_filename) + strlen (save_suffix) + 2); strcpy (new_filename, convert_filename); strcat (new_filename, save_suffix); @@ -4659,8 +4659,8 @@ 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 *)); + base_source_filenames + = (const char **) xmalloc ((n_base_source_files + 1) * sizeof (char *)); n_base_source_files = 0; for (; optind < argc; optind++) { |