diff options
author | bosch <bosch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-10-04 19:30:04 +0000 |
---|---|---|
committer | bosch <bosch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-10-04 19:30:04 +0000 |
commit | 47604f1dccb009dcf40928991b3b917b92b23bd6 (patch) | |
tree | 845a8db2989ae72993d028eba95bc86cb8bd4485 /gcc/ada/adaint.h | |
parent | f9c9d5d34a6ed36a1b7dfd67e2e1ce503feb38b5 (diff) | |
download | gcc-47604f1dccb009dcf40928991b3b917b92b23bd6.tar.gz |
* sysdep.c (__gnat_set_binary_mode, __gnat_set_text_mode):
Arg is int, not FILE *, in dummy version of functions.
* adaint.h (__gnat_set_binary_mode, __gnat_set_text_mode):
Arg is int, not FILE *.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@46012 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/adaint.h')
-rw-r--r-- | gcc/ada/adaint.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ada/adaint.h b/gcc/ada/adaint.h index ca8ef6f737a..43b9f400101 100644 --- a/gcc/ada/adaint.h +++ b/gcc/ada/adaint.h @@ -4,7 +4,7 @@ * * * A D A I N T * * * - * $Revision: 1.4 $ + * $Revision$ * * * C Header File * * * @@ -129,8 +129,8 @@ extern void __gnat_expect_portable_execvp PARAMS ((char *, char *[])); extern int __gnat_pipe PARAMS ((int *)); extern int __gnat_expect_poll PARAMS ((int *, int, int, int *)); -extern void __gnat_set_binary_mode PARAMS ((FILE *)); -extern void __gnat_set_text_mode PARAMS ((FILE *)); +extern void __gnat_set_binary_mode PARAMS ((int)); +extern void __gnat_set_text_mode PARAMS ((int)); extern char *__gnat_ttyname PARAMS ((int)); #ifdef IN_RTS |