diff options
author | Richard Stallman <rms@gnu.org> | 1993-07-23 19:01:20 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-07-23 19:01:20 +0000 |
commit | 34403047ce7f3d7ee0b6115553f8782ba1df6d48 (patch) | |
tree | 9c35200ed835f63d9d0db595d6a7c003849eaffc /gcc | |
parent | ff8f44010f2c7d7de2666078cc5d627f27c7432b (diff) | |
download | gcc-34403047ce7f3d7ee0b6115553f8782ba1df6d48.zip gcc-34403047ce7f3d7ee0b6115553f8782ba1df6d48.tar.gz gcc-34403047ce7f3d7ee0b6115553f8782ba1df6d48.tar.bz2 |
(output_init_element): Now static.
From-SVN: r4975
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/c-typeck.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/c-typeck.c b/gcc/c-typeck.c index 8c88dbb..5ad4a2a 100644 --- a/gcc/c-typeck.c +++ b/gcc/c-typeck.c @@ -5048,6 +5048,7 @@ digest_init (type, init, tail, require_constant, constructor_constant) /* Handle initializers that use braces. */ +static void output_init_element (); static void output_pending_init_elements (); static void check_init_type_bitfields (); @@ -5659,7 +5660,7 @@ set_init_label (fieldname) right after this element. (PENDING is normally 1; it is 0 while outputting pending elements, to avoid recursion.) */ -void +static void output_init_element (value, type, field, pending) tree value, type, field; int pending; |