diff options
author | Laurent Guerby <guerby@acm.org> | 2001-11-17 11:35:08 +0000 |
---|---|---|
committer | Laurent Guerby <guerby@gcc.gnu.org> | 2001-11-17 11:35:08 +0000 |
commit | b0df4321ea7db2dbe0194cec032926c5cf31c11d (patch) | |
tree | 39e493e87df2945a110142da9ac42207c0aaa146 /gcc/ada/utils.c | |
parent | b605ed61ea5d9003fdee72c0dc8e86b80ee15c43 (diff) | |
download | gcc-b0df4321ea7db2dbe0194cec032926c5cf31c11d.zip gcc-b0df4321ea7db2dbe0194cec032926c5cf31c11d.tar.gz gcc-b0df4321ea7db2dbe0194cec032926c5cf31c11d.tar.bz2 |
Make-lang.in (GNATLIBFLAGS): Add -W -Wall.
2001-11-17 Laurent Guerby <guerby@acm.org>
* Make-lang.in (GNATLIBFLAGS): Add -W -Wall.
* gigi.h (init_decl_processing): Rename to gnat_init_decl_processing.
* io-aux.c: Provide K&R prototypes to all functions, reformat code.
* lang-spec.h: Add missing struct field to silence warnings.
* sysdep.c (rts_get_*): Provide K&R prototype.
* sysdep.c (Unlock_Task, Lock_Task): Move to K&R prototype.
* traceback.c (Unlock_Task, Lock_Task): Likewise.
* tracebak.c (__gnat_backtrace): Remove unused variable.
* utils.c (end_subprog_body): Move to K&R style.
From-SVN: r47117
Diffstat (limited to 'gcc/ada/utils.c')
-rw-r--r-- | gcc/ada/utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/utils.c b/gcc/ada/utils.c index 1b4f805..e5375b4 100644 --- a/gcc/ada/utils.c +++ b/gcc/ada/utils.c @@ -6,7 +6,7 @@ * * * C Implementation File * * * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * * * Copyright (C) 1992-2001, Free Software Foundation, Inc. * * * @@ -1829,7 +1829,7 @@ begin_subprog_body (subprog_decl) to assembler language output. */ void -end_subprog_body (void) +end_subprog_body () { tree decl; tree cico_list; |