* *
* C Implementation File *
* *
- * Copyright (C) 1992-2004 Free Software Foundation, Inc. *
+ * Copyright (C) 1992-2005 Free Software Foundation, Inc. *
* *
* GNAT is free software; you can redistribute it and/or modify it under *
* terms of the GNU General Public License as published by the Free Soft- *
#include <signal.h>
#include <unistd.h>
+static void __gnat_error_handler (int, int, struct sigcontext *);
+
static void
-__gnat_error_handler (sig, code, sc)
- int sig;
- int code;
- struct sigcontext *sc;
+__gnat_error_handler (int sig, int code __attribute__ ((unused)),
+ struct sigcontext *sc __attribute__ ((unused)))
{
struct Exception_Data *exception;
- char *msg;
+ const char *msg;
switch (sig)
{
(void) sigaction (SIGBUS, &act, NULL);
}
-void __gnat_init_float ();
-
void
__gnat_initialize ()
{