diff options
Diffstat (limited to 'gcc/ada/raise.h')
-rw-r--r-- | gcc/ada/raise.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gcc/ada/raise.h b/gcc/ada/raise.h index 2e42656..b2793b5 100644 --- a/gcc/ada/raise.h +++ b/gcc/ada/raise.h @@ -6,7 +6,7 @@ * * * C Header File * * * - * Copyright (C) 1992-2020, Free Software Foundation, Inc. * + * Copyright (C) 1992-2021, 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- * @@ -40,9 +40,9 @@ struct Exception_Data char Not_Handled_By_Others; char Lang; int Name_Length; - char *Full_Name; - char *Htable_Ptr; - void *Foreign_Data; + __UINTPTR_TYPE__ Full_Name; + void *HTable_Ptr; + __UINTPTR_TYPE__ Foreign_Data; void (*Raise_Hook)(void); }; @@ -50,13 +50,11 @@ typedef struct Exception_Data *Exception_Id; struct Exception_Occurrence; -extern void _gnat_builtin_longjmp (void *, int); extern void __gnat_unhandled_terminate (void); extern void *__gnat_malloc (__SIZE_TYPE__); extern void __gnat_free (void *); extern void *__gnat_realloc (void *, __SIZE_TYPE__); extern void __gnat_finalize (void); -extern void set_gnat_exit_status (int); extern void __gnat_set_globals (void); extern void __gnat_initialize (void *); extern void __gnat_init_float (void); |