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/exit.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/exit.c')
-rw-r--r-- | gcc/ada/exit.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/ada/exit.c b/gcc/ada/exit.c index dbb54a1..72ce28e 100644 --- a/gcc/ada/exit.c +++ b/gcc/ada/exit.c @@ -50,8 +50,7 @@ int gnat_exit_status = 0; void -__gnat_set_exit_status (i) - int i; +__gnat_set_exit_status (int i) { gnat_exit_status = i; } |