summaryrefslogtreecommitdiff
path: root/gcc/ada/ctrl_c.c
diff options
context:
space:
mode:
authorR. Kelley Cook <kcook@gcc.gnu.org>2003-10-31 01:08:43 +0000
committerR. Kelley Cook <kcook@gcc.gnu.org>2003-10-31 01:08:43 +0000
commit9373164a48dc470b44c1ec9431213ce8c06323e5 (patch)
treeee92d17300eb95b03e9b66263bbb9e1407851aa2 /gcc/ada/ctrl_c.c
parent6587cd2b21cd246a7a2986e4d7f400a5d4e25a4b (diff)
downloadgcc-9373164a48dc470b44c1ec9431213ce8c06323e5.tar.gz
C90 prototype updates.
From-SVN: r73113
Diffstat (limited to 'gcc/ada/ctrl_c.c')
-rw-r--r--gcc/ada/ctrl_c.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/ctrl_c.c b/gcc/ada/ctrl_c.c
index 22d00667275..20dd8811007 100644
--- a/gcc/ada/ctrl_c.c
+++ b/gcc/ada/ctrl_c.c
@@ -132,7 +132,7 @@ __gnat_install_int_handler (void (*proc) (void))
}
void
-__gnat_uninstall_int_handler ()
+__gnat_uninstall_int_handler (void)
{
if (sigint_intercepted != NULL)
SetConsoleCtrlHandler (__gnat_int_handler, FALSE);
@@ -150,7 +150,7 @@ __gnat_install_int_handler (void (*proc) (void) __attribute__ ((unused)))
}
void
-__gnat_uninstall_int_handler ()
+__gnat_uninstall_int_handler (void)
{
}
#endif