diff options
author | bje <bje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-18 06:39:47 +0000 |
---|---|---|
committer | bje <bje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-18 06:39:47 +0000 |
commit | 06ac2f3d718224b216abf4f9ffe96aaad172288b (patch) | |
tree | 276b52a836eed2ebc477700a5c417a04ea5ed166 /gcc/opts.c | |
parent | cb940bfca00048e57f698481fb4bdbc4194ad35e (diff) | |
download | gcc-06ac2f3d718224b216abf4f9ffe96aaad172288b.tar.gz |
* opts.h (add_input_filename): Remove extern declaration.
* opts.c (add_input_filename): Make static.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90850 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/opts.c')
-rw-r--r-- | gcc/opts.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gcc/opts.c b/gcc/opts.c index 21b5b7bc0e3..188ad29a8ad 100644 --- a/gcc/opts.c +++ b/gcc/opts.c @@ -387,6 +387,15 @@ handle_option (const char **argv, unsigned int lang_mask) return result; } +/* Handle FILENAME from the command line. */ +static void +add_input_filename (const char *filename) +{ + num_in_fnames++; + in_fnames = xrealloc (in_fnames, num_in_fnames * sizeof (in_fnames[0])); + in_fnames[num_in_fnames - 1] = filename; +} + /* Decode and handle the vector of command line options. LANG_MASK contains has a single bit set representing the current language. */ @@ -419,15 +428,6 @@ handle_options (unsigned int argc, const char **argv, unsigned int lang_mask) } } -/* Handle FILENAME from the command line. */ -void -add_input_filename (const char *filename) -{ - num_in_fnames++; - in_fnames = xrealloc (in_fnames, num_in_fnames * sizeof (in_fnames[0])); - in_fnames[num_in_fnames - 1] = filename; -} - /* Parse command line options and set default flag values. Do minimal options processing. */ void |