diff options
author | R. Kelley Cook <kcook@gcc.gnu.org> | 2003-10-31 01:08:43 +0000 |
---|---|---|
committer | R. Kelley Cook <kcook@gcc.gnu.org> | 2003-10-31 01:08:43 +0000 |
commit | 9373164a48dc470b44c1ec9431213ce8c06323e5 (patch) | |
tree | ee92d17300eb95b03e9b66263bbb9e1407851aa2 /gcc/ada/misc.c | |
parent | 6587cd2b21cd246a7a2986e4d7f400a5d4e25a4b (diff) | |
download | gcc-9373164a48dc470b44c1ec9431213ce8c06323e5.zip gcc-9373164a48dc470b44c1ec9431213ce8c06323e5.tar.gz gcc-9373164a48dc470b44c1ec9431213ce8c06323e5.tar.bz2 |
C90 prototype updates.
From-SVN: r73113
Diffstat (limited to 'gcc/ada/misc.c')
-rw-r--r-- | gcc/ada/misc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ada/misc.c b/gcc/ada/misc.c index 8d541e4..d2af6f2 100644 --- a/gcc/ada/misc.c +++ b/gcc/ada/misc.c @@ -359,7 +359,7 @@ gnat_tree_size (enum tree_code code) /* Perform all the initialization steps that are language-specific. */ static bool -gnat_init () +gnat_init (void) { /* Performs whatever initialization steps needed by the language-dependent lexical analyzer. */ @@ -396,7 +396,7 @@ gnat_finish_incomplete_decl (tree dont_care ATTRIBUTE_UNUSED) objects. */ void -gnat_compute_largest_alignment () +gnat_compute_largest_alignment (void) { enum machine_mode mode; @@ -413,7 +413,7 @@ gnat_compute_largest_alignment () various language dependent hooks. */ void -gnat_init_gcc_eh () +gnat_init_gcc_eh (void) { /* We shouldn't do anything if the No_Exceptions_Handler pragma is set, though. This could for instance lead to the emission of tables with |