diff options
author | Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> | 2003-01-27 13:16:59 +0000 |
---|---|---|
committer | Rainer Orth <ro@gcc.gnu.org> | 2003-01-27 13:16:59 +0000 |
commit | 437026ef889dafb9b725fb51e5c542b6283849fe (patch) | |
tree | fa64f6cafd780002c7a3e891c0d512ba9cabb532 /gcc/ada/adaint.h | |
parent | 244d05fb87c29bd539630243bef9b1d0be00fcf2 (diff) | |
download | gcc-437026ef889dafb9b725fb51e5c542b6283849fe.zip gcc-437026ef889dafb9b725fb51e5c542b6283849fe.tar.gz gcc-437026ef889dafb9b725fb51e5c542b6283849fe.tar.bz2 |
init.c (__gnat_error_handler): Make msg const.
* init.c (__gnat_error_handler): Make msg const.
* gmem.c (convert_addresses): Move declaration ...
* adaint.h: ... here.
* adaint.c (convert_addresses): Adapt addrs type to match
prototype.
* adaint.c (__gnat_try_lock): Cast pid_t to long, adapt format.
From-SVN: r61887
Diffstat (limited to 'gcc/ada/adaint.h')
-rw-r--r-- | gcc/ada/adaint.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/ada/adaint.h b/gcc/ada/adaint.h index 2b5f01a..d65be6d 100644 --- a/gcc/ada/adaint.h +++ b/gcc/ada/adaint.h @@ -134,6 +134,9 @@ extern void __gnat_set_binary_mode PARAMS ((int)); extern void __gnat_set_text_mode PARAMS ((int)); extern char *__gnat_ttyname PARAMS ((int)); +extern void convert_addresses PARAMS ((char *[], int, + void *, int *)); + #ifdef IN_RTS /* Portable definition of strdup, which is not available on all systems. */ #define xstrdup(S) strcpy ((char *) malloc (strlen (S) + 1), S) |